changeset 1:c554f15279fe draft

"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rpfba commit 2f1af427fa4c4f2aad53ab94c4cdb51456c66019-dirty"
author tduigou
date Thu, 10 Feb 2022 11:36:24 +0000
parents fb5efc456dcc
children 6f0d786299ca
files rpfba.xml test-data/e_coli_iML1515.sbml test-data/iCN718.xml.gz test-data/rp_001_0001_with_fba.xml
diffstat 4 files changed, 101 insertions(+), 159897 deletions(-) [+]
line wrap: on
line diff
--- a/rpfba.xml	Tue Nov 23 16:34:29 2021 +0000
+++ b/rpfba.xml	Thu Feb 10 11:36:24 2022 +0000
@@ -1,80 +1,120 @@
-<tool id="rpFBA" name="FBA" version="5.9.2">
+<tool id="rpfba" name="FBA" version="@TOOL_VERSION@" profile="19.09">
     <description>Perform FBA for the RetroPath2.0 heterologous pathways</description>
-	<requirements>
-        <requirement type="package" version="5.9.2">rptools</requirement>
+    <macros>
+        <token name="@TOOL_VERSION@">5.12.1</token>
+    </macros>
+    <requirements>
+        <requirement type="package" version="@TOOL_VERSION@">rptools</requirement>
     </requirements>
     <stdio>
         <regex match="WARNING" level="warning" />
-        <regex match="ERROR"   level="fatal" />
+        <regex match="ERROR" level="fatal" />
     </stdio>
     <command detect_errors="exit_code"><![CDATA[
-	    python -m rptools.rpfba '$pathway' '$model' '$compartment_id' '$pathway_with_fba'
-			#if str($adv.merge) == "true":
-				--merge
-			#end if
-				--objective_rxn_id '$input_sim_type.objective_rxn_id'
-				--sim '$input_sim_type.sim_type'
+        python -m rptools.rpfba '$pathway' '$model' '$compartment_id' '$pathway_with_fba'
+            #if str($adv.merge) == "true":
+                --merge
+            #end if
+                --objective_rxn_id '$objective_rxn_id'
+                --sim '$input_sim_type.sim_type'
             #if str($adv.ignore_orphan_species) == "true":
                 --ignore_orphan_species
-			#end if
-				--log '$adv.log_level'
-			#if str($input_sim_type.sim_type)=="fraction"
-				--biomass_rxn_id '$input_sim_type.biomass_rxn_id'
-				--fraction_of '$input_sim_type.fraction_of'
-			#end if
-			#if str($input_sim_type.sim_type)=="pfba"
-				--biomass_rxn_id ''
-				--fraction_of '$input_sim_type.fraction_of'
-			#end if
-			#if str($input_sim_type.sim_type)=="fba"
-				--biomass_rxn_id ''
-				--fraction_of 0.0
-			#end if
+            #end if
+                --log "error"
+            #if str($input_sim_type.sim_type)=="fba"
+                --fraction_of 0.0
+            #else
+                --fraction_of '$input_sim_type.fraction_of'
+            #end if
+                --biomass_rxn_id '$biomass_rxn_id'
     ]]></command>
     <inputs>
-		<param name="pathway" type="data" format="xml" label="Pathway (rpSBML)" />
-		<param name="model"   type="data" format="xml" label="Model (SBML)" />
-        <param name="compartment_id" type="text" label="SBML compartment ID" value="MNXC3" />
+        <param name="pathway" type="data" format="sbml" label="Pathway (rpSBML)" />
+        <param name="model" type="data" format="sbml" label="Model (SBML)" />
+        <param name="compartment_id" type="text" label="SBML compartment ID" value="c" >
+            <validator type="empty_field" message="A compartment ID is required"/>
+        </param>
+        <param name="objective_rxn_id" type="text" value="rxn_target" label="reaction ID to optimise" >
+            <validator type="empty_field" message="Reaction ID is required"/>
+        </param>
+        <param name="biomass_rxn_id" type="text" label="biomass reaction ID" value="" >
+            <validator type="empty_field" message="Biomass reaction ID is required"/>
+        </param>
         <conditional name="input_sim_type">
-            <param name="sim_type"     type="select" label="Constraint based simulation type">
+            <param name="sim_type" type="select" label="Constraint based simulation type">
                 <option value="fraction" selected="true">Fraction of Reaction</option>
                 <option value="fba" >FBA</option>
                 <option value="pfba">Parsimonious FBA</option>
             </param>
-			<when value="fraction">
-				<param name="fraction_of"        type="float" value="0.75"       label="Fraction of the optimum" />
-				<param name="objective_rxn_id"    type="text"  value="rxn_target" label="reaction ID to optimise" />
-				<param name="biomass_rxn_id"    type="text"  value="biomass"    label="biomass reaction ID" />
-			</when>
-			<when value="pfba">
-				<param name="fraction_of"        type="float" value="0.95"       label="Fraction of the optimum" />
-				<param name="objective_rxn_id"    type="text"  value="rxn_target" label="reaction ID to optimise" />
-			</when>
-			<when value="fba">
-				<param name="objective_rxn_id"    type="text"  value="rxn_target" label="reaction ID to optimise" />
-			</when>
+            <when value="fraction">
+                <param name="fraction_of" type="float" value="0.75" min="0" max="1.0" label="Fraction of the optimum" />
+            </when>
+            <when value="pfba">
+                <param name="fraction_of" type="float" value="0.95" min="0" max="1.0" label="Fraction of the optimum" />
+            </when>
+            <when value="fba">
+            </when>
         </conditional>
-		<section name="adv" title="Advanced Options" expanded="false">
-			<param name="merge"     type="boolean" label="Output the merged model?"       checked="false"   display="checkboxes" />
-            <param name="ignore_orphan_species"         type="boolean" label="Ignore metabolites that are only consumed or produced?"              checked="true" />
-			<param name="log_level"      type="select"  label="Log level">
-                <option value="debug" >debug</option>
-                <option value="info" >info</option>
-			    <option value="warning" >warning</option>
-			    <option value="error"   selected="true">error</option>
-			    <option value="critical" >critical</option>
-            </param>
-		</section>
+        <section name="adv" title="Advanced Options" expanded="false">
+            <param name="merge" type="boolean" label="Output the merged model?" checked="false" display="checkboxes" />
+            <param name="ignore_orphan_species" type="boolean" label="Ignore metabolites that are only consumed or produced?" checked="true" />
+        </section>
     </inputs>
     <outputs>
-        <data name="pathway_with_fba" format="xml" label="${tool.name}(${input_sim_type.sim_type}) - ${pathway.name}" />
+        <data name="pathway_with_fba" format="sbml" label="${tool.name}(${input_sim_type.sim_type}) - ${pathway.name}" />
     </outputs>
     <tests>
         <test>
-        <!-- test 1: check if identical outputs are produced with default parameters  -->
+        <!-- test 1: check if identical outputs are produced with R_BIOMASS__3 biomass name ID and BiGG model (iCN718)  -->
+            <param name="pathway" value="rp_001_0001.xml" />
+            <param name="model" value="iCN718.xml.gz" />
+            <param name="biomass_rxn_id" value="R_BIOMASS__3" />
+            <output name="pathway_with_fba" >
+                <assert_contents>
+                    <is_valid_xml />
+                    <!--check fba_fraction value-->
+                    <has_text text="5.54302" />
+                    <!--check fba_biomass value-->
+                    <has_text text="1.31359" />
+                    <has_n_lines n="408" />
+                </assert_contents>
+            </output>
+        </test>
+        <test>
+        <!-- test 2: check if identical outputs are produced with R_BIOMASS__3 biomass name ID and BiGG model (iCN718)  and sim_type=fba-->
             <param name="pathway" value="rp_001_0001.xml" />
-            <param name="model" value="e_coli_iML1515.sbml" />
-            <output name="pathway_with_fba" file="rp_001_0001_with_fba.xml" ftype="xml" compare="diff" sort="true"/>
+            <param name="model" value="iCN718.xml.gz" />
+            <param name="biomass_rxn_id" value="R_BIOMASS__3" />
+            <conditional name="input_sim_type">
+                <param name="sim_type" value="fba"/>
+            </conditional>
+            <output name="pathway_with_fba" >
+                <assert_contents>
+                    <is_valid_xml />
+                    <!--check fba_fba value-->
+                    <has_text text="16.47058" />
+                    <not_has_text text="fba_fraction" />
+                    <has_n_lines n="392" />
+                </assert_contents>
+            </output>
+        </test>
+        <test>
+        <!-- test 3: check if identical outputs are produced with R_DM_biomass_c biomass name ID and BiGG model (iCN718)  and sim_type=pfba-->
+            <param name="pathway" value="rp_001_0001.xml" />
+            <param name="model" value="iCN718.xml.gz" />
+            <param name="biomass_rxn_id" value="R_DM_biomass_c" />
+            <conditional name="input_sim_type">
+                <param name="sim_type" value="pfba"/>
+            </conditional>
+            <output name="pathway_with_fba" >
+                <assert_contents>
+                    <is_valid_xml />
+                    <!--check fba_pfba value-->
+                    <has_text text="2623.54248" />
+                    <not_has_text text="fba_fraction" />
+                    <has_n_lines n="392" />
+                </assert_contents>
+            </output>
         </test>
     </tests>
     <help><![CDATA[
@@ -98,8 +138,8 @@
 - the species is only consumed or produced with the heterologue pathway.
 
 .. image:: https://raw.githubusercontent.com/Galaxy-SynBioCAD/rpFBA/standalone/galaxy/img/rpFBA.png
-	:width: 60 %
-	:align: center
+    :width: 60 %
+    :align: center
 
 |
 
@@ -136,7 +176,7 @@
 Version
 ----------
 
-5.9.2
+5.12.1
 
 Authors
 -------
@@ -152,33 +192,10 @@
 Acknowledgments
 ---------------
 
-
 * Thomas Duigou
     ]]></help>
     <citations>
-        <citation type="bibtex">
-@article{hucka2016sbml,
-  title={SBML Level 3 package: Groups, Version 1 Release 1},
-  author={Hucka, Michael and Smith, Lucian P},
-  journal={Journal of integrative bioinformatics},
-  volume={13},
-  number={3},
-  pages={8--29},
-  year={2016},
-  publisher={De Gruyter}
-}
-        </citation>
-        <citation type="bibtex">
-@article{ebrahim2013cobrapy,
-  title={COBRApy: COnstraints-based reconstruction and analysis for python},
-  author={Ebrahim, Ali and Lerman, Joshua A and Palsson, Bernhard O and Hyduke, Daniel R},
-  journal={BMC systems biology},
-  volume={7},
-  number={1},
-  pages={74},
-  year={2013},
-  publisher={Springer}
-}
-        </citation>
+        <citation type="doi">10.1186/1752-0509-7-74</citation>
+        <citation type="doi">10.1515/jib-2016-290 </citation>    
     </citations>
-</tool>
\ No newline at end of file
+</tool>
--- a/test-data/e_coli_iML1515.sbml	Tue Nov 23 16:34:29 2021 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,159405 +0,0 @@
-<?xml version='1.0' encoding='utf-8' standalone='no'?>
-<!-- Created by ModelPolisher version 1.7 on 2018-17-24 at 23:17:12 PST with JSBML version 1.2. -->
-<sbml xmlns="http://www.sbml.org/sbml/level3/version1/core" fbc:required="false" groups:required="false" level="3" sboTerm="SBO:0000624" version="1"
-xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2" xmlns:groups="http://www.sbml.org/sbml/level3/version1/groups/version1">
-  <model extentUnits="substance" fbc:strict="true" id="iML1515" metaid="iML1515" name="Escherichia coli str. K-12 substr. MG1655" substanceUnits="substance" timeUnits="time">
-    <annotation>
-      <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqmodel="http://biomodels.net/model-qualifiers/" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-        <rdf:Description rdf:about="#iML1515">
-          <bqbiol:hasTaxon>
-            <rdf:Bag>
-              <rdf:li rdf:resource="http://identifiers.org/taxonomy/511145" />
-            </rdf:Bag>
-          </bqbiol:hasTaxon>
-          <bqmodel:is>
-            <rdf:Bag>
-              <rdf:li rdf:resource="http://identifiers.org/bigg.model/iML1515" />
-            </rdf:Bag>
-          </bqmodel:is>
-          <bqmodel:isDescribedBy>
-            <rdf:Bag>
-              <rdf:li rdf:resource="http://identifiers.org/pubmed/29020004" />
-            </rdf:Bag>
-          </bqmodel:isDescribedBy>
-        </rdf:Description>
-      </rdf:RDF>
-    </annotation>
-    <fbc:listOfObjectives xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2" fbc:activeObjective="obj_biomass">
-      <fbc:objective fbc:id="obj_biomass" fbc:type="maximize">
-        <fbc:listOfFluxObjectives>
-          <fbc:fluxObjective fbc:coefficient="1" fbc:reaction="biomass" />
-        </fbc:listOfFluxObjectives>
-      </fbc:objective>
-    </fbc:listOfObjectives>
-    <fbc:listOfGeneProducts xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-      <fbc:geneProduct fbc:id="G_b2551" fbc:label="b2551" metaid="G_b2551">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2551">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A825" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008389" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10408" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947022" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130476" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0870" fbc:label="b0870" metaid="G_b0870">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0870">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P75823" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002954" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13690" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944955" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128838" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3368" fbc:label="b3368" metaid="G_b3368">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3368">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AEA8" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011010" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10188" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947880" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131246" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2436" fbc:label="b2436" metaid="G_b2436">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2436">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P36553" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008034" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12189" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946908" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130361" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3500" fbc:label="b3500" metaid="G_b3500">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3500">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P06715" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011432" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10412" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948014" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131372" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0945" fbc:label="b0945" metaid="G_b0945">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0945">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A7E1" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003201" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10807" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945556" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128912" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4467" fbc:label="b4467" metaid="G_b4467">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4467">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P52074" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0174097" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13291" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/2847717" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:49176294" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4468" fbc:label="b4468" metaid="G_b4468">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4468">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P52073" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0174098" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12996" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/2847718" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:49176295" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2979" fbc:label="b2979" metaid="G_b2979">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2979">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AEP9" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009773" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12997" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947353" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130879" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3916" fbc:label="b3916" metaid="G_b3916">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3916">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A796" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012789" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10699" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948412" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131754" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1260" fbc:label="b1260" metaid="G_b1260">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1260">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A877" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004232" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11024" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946204" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129221" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1261" fbc:label="b1261" metaid="G_b1261">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1261">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A879" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004234" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11025" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945768" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129222" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3426" fbc:label="b3426" metaid="G_b3426">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3426">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P13035" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011191" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10394" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947934" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131300" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2242" fbc:label="b2242" metaid="G_b2242">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2242">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P13033" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007424" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10392" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946733" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130177" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2243" fbc:label="b2243" metaid="G_b2243">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2243">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A996" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007426" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10393" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946735" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130178" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2241" fbc:label="b2241" metaid="G_b2241">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2241">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A9C0" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007422" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10391" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946713" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130176" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4054" fbc:label="b4054" metaid="G_b4054">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4054">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P04693" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013278" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11040" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948563" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131880" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3770" fbc:label="b3770" metaid="G_b3770">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3770">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AB80" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012316" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10497" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948278" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:49176403" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3281" fbc:label="b3281" metaid="G_b3281">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3281">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P15770" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0010763" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10077" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947776" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131162" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1692" fbc:label="b1692" metaid="G_b1692">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1692">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A6D5" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005651" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11234" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946200" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129648" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0243" fbc:label="b0243" metaid="G_b0243">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0243">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P07004" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000832" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10767" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946680" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128229" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1613" fbc:label="b1613" metaid="G_b1613">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1613">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P00946" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005398" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10566" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944840" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:49176125" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0414" fbc:label="b0414" metaid="G_b0414">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0414">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P25539" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001441" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11321" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945620" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128399" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3041" fbc:label="b3041" metaid="G_b3041">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3041">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A7J0" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009980" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10465" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947526" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130937" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0025" fbc:label="b0025" metaid="G_b0025">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0025">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AG40" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000091" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11079" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/949129" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128019" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0844" fbc:label="b0844" metaid="G_b0844">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0844">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P75809" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002877" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13678" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945470" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111176" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0446" fbc:label="b0446" metaid="G_b0446">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0446">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P46891" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001548" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13216" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945089" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111136" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3812" fbc:label="b3812" metaid="G_b3812">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3812">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0ADP0" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012450" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11202" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948357" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131664" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1662" fbc:label="b1662" metaid="G_b1662">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1662">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AFU8" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005557" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11406" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945848" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129620" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0421" fbc:label="b0421" metaid="G_b0421">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0421">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P22939" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001463" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10508" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945064" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128406" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3804" fbc:label="b3804" metaid="G_b3804">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3804">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P09126" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012425" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10430" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948587" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131656" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3997" fbc:label="b3997" metaid="G_b3997">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3997">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P29680" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013066" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11543" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948497" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131827" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4382" fbc:label="b4382" metaid="G_b4382">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4382">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P07650" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0014374" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10219" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948901" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16132199" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0126" fbc:label="b0126" metaid="G_b0126">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0126">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P61517" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000442" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12319" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944832" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128119" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0339" fbc:label="b0339" metaid="G_b0339">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0339">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0ABE9" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001171" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10176" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946548" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128324" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4006" fbc:label="b4006" metaid="G_b4006">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4006">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P15639" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013097" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10795" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948503" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131836" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2508" fbc:label="b2508" metaid="G_b2508">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2508">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0ADG7" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008257" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10421" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946985" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130433" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3846" fbc:label="b3846" metaid="G_b3846">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3846">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P21177" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012564" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10279" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948336" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131692" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2341" fbc:label="b2341" metaid="G_b2341">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2341">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77399" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007723" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG14127" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/949097" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130274" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2400" fbc:label="b2400" metaid="G_b2400">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2400">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P04805" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007911" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10407" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946906" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130330" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3993" fbc:label="b3993" metaid="G_b3993">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3993">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P30137" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013055" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11586" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948491" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131823" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2066" fbc:label="b2066" metaid="G_b2066">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2066">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A8F4" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006840" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11701" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946597" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111379" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0238" fbc:label="b0238" metaid="G_b0238">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0238">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A9M5" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000814" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10414" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944817" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128224" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0125" fbc:label="b0125" metaid="G_b0125">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0125">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A9M2" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000440" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG20098" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946624" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111088" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0474" fbc:label="b0474" metaid="G_b0474">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0474">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P69441" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001645" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10032" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945097" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128458" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2518" fbc:label="b2518" metaid="G_b2518">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2518">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A763" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008291" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10650" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945611" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130443" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1062" fbc:label="b1062" metaid="G_b1062">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1062">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P05020" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003607" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10806" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945787" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129025" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1281" fbc:label="b1281" metaid="G_b1281">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1281">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P08244" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004304" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10809" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947121" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129242" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0720" fbc:label="b0720" metaid="G_b0720">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0720">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0ABH7" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002451" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10402" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945323" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128695" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1136" fbc:label="b1136" metaid="G_b1136">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1136">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P08200" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003823" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10489" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945702" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129099" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1241" fbc:label="b1241" metaid="G_b1241">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1241">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A9Q7" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004164" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10031" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945837" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129202" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0351" fbc:label="b0351" metaid="G_b0351">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0351">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77580" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001207" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13625" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945008" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128336" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4069" fbc:label="b4069" metaid="G_b4069">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4069">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P27550" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013337" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11448" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948572" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131895" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2502" fbc:label="b2502" metaid="G_b2502">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2502">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AFL6" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008238" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11403" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946970" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130427" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4226" fbc:label="b4226" metaid="G_b4226">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4226">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A7A9" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013824" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10755" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948748" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16132048" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2744" fbc:label="b2744" metaid="G_b2744">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2744">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A840" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009008" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11817" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947211" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130651" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3403" fbc:label="b3403" metaid="G_b3403">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3403">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P22259" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011106" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10688" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945667" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131280" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1479" fbc:label="b1479" metaid="G_b1479">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1479">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P26616" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004931" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10948" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946031" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111281" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1190" fbc:label="b1190" metaid="G_b1190">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1190">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P29012" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003997" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11408" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945754" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129153" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4053" fbc:label="b4053" metaid="G_b4053">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4053">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A6B4" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013272" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10001" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948564" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131879" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2379" fbc:label="b2379" metaid="G_b2379">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2379">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77434" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007850" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG14198" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946850" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130311" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2290" fbc:label="b2290" metaid="G_b2290">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2290">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A959" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007560" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG14101" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946772" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130225" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3564" fbc:label="b3564" metaid="G_b3564">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3564">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P09099" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011637" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11075" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948133" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131435" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0063" fbc:label="b0063" metaid="G_b0063">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0063">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P08204" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000223" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10053" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946017" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128057" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3752" fbc:label="b3752" metaid="G_b3752">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3752">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A9J6" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012266" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10818" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948260" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131620" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3926" fbc:label="b3926" metaid="G_b3926">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3926">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A6F3" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012825" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10398" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948423" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131764" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4383" fbc:label="b4383" metaid="G_b4383">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4383">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A6K6" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0014377" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10220" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948910" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16132200" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0928" fbc:label="b0928" metaid="G_b0928">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0928">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P00509" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003150" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10096" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945553" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128895" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2930" fbc:label="b2930" metaid="G_b2930">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2930">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P21437" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009615" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11245" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947410" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130831" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4232" fbc:label="b4232" metaid="G_b4232">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4232">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A993" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013842" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10283" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948753" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16132054" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3697" fbc:label="b3697" metaid="G_b3697">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3697">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A8Y5" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012086" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11195" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948204" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131565" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3925" fbc:label="b3925" metaid="G_b3925">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3925">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A9C9" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012821" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11517" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948424" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131763" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3430" fbc:label="b3430" metaid="G_b3430">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3430">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A6V1" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011204" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10379" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947942" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131304" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1854" fbc:label="b1854" metaid="G_b1854">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1854">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P21599" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006182" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10803" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946527" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129807" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1676" fbc:label="b1676" metaid="G_b1676">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1676">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AD61" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005600" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10804" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946179" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129632" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2708" fbc:label="b2708" metaid="G_b2708">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2708">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P17115" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008902" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10973" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947587" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111480" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3197" fbc:label="b3197" metaid="G_b3197">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3197">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P45395" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0010504" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12803" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947734" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131087" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0071" fbc:label="b0071" metaid="G_b0071">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0071">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P30126" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000259" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11575" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945642" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128065" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0072" fbc:label="b0072" metaid="G_b0072">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0072">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A6A6" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000261" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11576" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945076" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128066" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0077" fbc:label="b0077" metaid="G_b0077">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0077">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P00893" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000290" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10500" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948793" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111084" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0078" fbc:label="b0078" metaid="G_b0078">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0078">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P00894" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000294" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10499" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947267" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128071" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3671" fbc:label="b3671" metaid="G_b3671">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3671">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P08142" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011999" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10494" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948182" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131541" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3670" fbc:label="b3670" metaid="G_b3670">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3670">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0ADF8" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011997" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10502" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948183" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131540" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0908" fbc:label="b0908" metaid="G_b0908">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0908">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A6D3" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003095" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10073" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945528" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128875" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1263" fbc:label="b1263" metaid="G_b1263">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1263">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P00904" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004241" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11027" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945109" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129224" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1264" fbc:label="b1264" metaid="G_b1264">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1264">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P00895" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004244" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11028" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945846" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129225" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2599" fbc:label="b2599" metaid="G_b2599">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2599">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A9J8" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008545" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10707" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947081" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130520" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2600" fbc:label="b2600" metaid="G_b2600">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2600">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P07023" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008547" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11039" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947115" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130521" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2329" fbc:label="b2329" metaid="G_b2329">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2329">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P12008" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007693" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10075" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946814" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130264" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1262" fbc:label="b1262" metaid="G_b1262">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1262">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P00909" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004238" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11026" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945519" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:635341464" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2779" fbc:label="b2779" metaid="G_b2779">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2779">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A6P9" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009110" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10258" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945032" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130686" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2925" fbc:label="b2925" metaid="G_b2925">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2925">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AB71" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009600" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10282" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947415" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130826" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2097" fbc:label="b2097" metaid="G_b2097">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2097">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A991" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006941" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG14062" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946632" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111385" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0963" fbc:label="b0963" metaid="G_b0963">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0963">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A731" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003259" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12307" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945574" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111195" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1702" fbc:label="b1702" metaid="G_b1702">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1702">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P23538" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005678" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10759" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946209" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129658" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4025" fbc:label="b4025" metaid="G_b4025">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4025">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A6T1" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013163" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10702" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948535" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131851" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2926" fbc:label="b2926" metaid="G_b2926">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2926">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A799" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009605" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10703" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947414" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130827" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1850" fbc:label="b1850" metaid="G_b1850">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1850">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A955" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006164" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10256" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946367" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129803" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0767" fbc:label="b0767" metaid="G_b0767">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0767">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P52697" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002611" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13231" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946398" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128735" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3386" fbc:label="b3386" metaid="G_b3386">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3386">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AG07" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011061" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11960" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947896" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131264" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2464" fbc:label="b2464" metaid="G_b2464">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2464">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A867" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008115" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11797" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947006" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130389" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0008" fbc:label="b0008" metaid="G_b0008">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0008">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A870" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000027" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11556" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944748" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128002" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2465" fbc:label="b2465" metaid="G_b2465">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2465">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P33570" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008117" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12100" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945865" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130390" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2935" fbc:label="b2935" metaid="G_b2935">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2935">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P27302" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009625" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11427" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947420" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:49176286" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0678" fbc:label="b0678" metaid="G_b0678">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0678">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A759" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002304" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10633" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945290" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128654" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1478" fbc:label="b1478" metaid="G_b1478">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1478">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P39451" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004928" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12622" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946036" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111280" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4269" fbc:label="b4269" metaid="G_b4269">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4269">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P27250" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013982" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11436" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948802" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111716" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0493" fbc:label="b0493" metaid="G_b0493">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0493">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AFP4" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001709" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13262" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945337" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128477" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3588" fbc:label="b3588" metaid="G_b3588">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3588">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P37685" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011718" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12292" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948104" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111619" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3003" fbc:label="b3003" metaid="G_b3003">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3003">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AG84" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009859" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11292" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947478" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130901" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3011" fbc:label="b3011" metaid="G_b3011">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3011">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/Q46856" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009888" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13014" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947493" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130909" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3903" fbc:label="b3903" metaid="G_b3903">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3903">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P32170" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012736" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11867" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948400" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:49176441" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2411" fbc:label="b2411" metaid="G_b2411">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2411">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P15042" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007938" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10534" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946885" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130337" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3996" fbc:label="b3996" metaid="G_b3996">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3996">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P32664" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013063" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11702" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948498" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:49176450" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4390" fbc:label="b4390" metaid="G_b4390">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4390">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P27278" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0014397" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11335" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948911" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111746" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0639" fbc:label="b0639" metaid="G_b0639">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0639">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A752" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002187" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13241" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945248" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128622" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2103" fbc:label="b2103" metaid="G_b2103">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2103">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P76422" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006958" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG14068" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946459" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130041" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2418" fbc:label="b2418" metaid="G_b2418">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2418">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P40191" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007973" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12642" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946881" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130344" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3831" fbc:label="b3831" metaid="G_b3831">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3831">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P12758" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012528" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11045" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948987" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131680" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4384" fbc:label="b4384" metaid="G_b4384">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4384">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0ABP8" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0014379" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10222" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945654" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16132201" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3073" fbc:label="b3073" metaid="G_b3073">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3073">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P42588" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0010092" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12718" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947120" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:145698310" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3708" fbc:label="b3708" metaid="G_b3708">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3708">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A853" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012133" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11005" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948221" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111643" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3008" fbc:label="b3008" metaid="G_b3008">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3008">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P06721" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009878" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10583" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946240" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130906" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3614" fbc:label="b3614" metaid="G_b3614">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3614">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P37691" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011824" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12298" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948128" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111621" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1134" fbc:label="b1134" metaid="G_b1134">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1134">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AEI6" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003818" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13446" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945689" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129097" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3642" fbc:label="b3642" metaid="G_b3642">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3642">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A7E3" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011904" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10808" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948157" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131513" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0415" fbc:label="b0415" metaid="G_b0415">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0415">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P61714" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001444" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11322" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946453" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128400" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3771" fbc:label="b3771" metaid="G_b3771">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3771">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P05791" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012318" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10496" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948277" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:49176404" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2293" fbc:label="b2293" metaid="G_b2293">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2293">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77625" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007567" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG14104" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946777" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111414" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3885" fbc:label="b3885" metaid="G_b3885">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3885">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A8Y3" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012686" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11850" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948380" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111661" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2579" fbc:label="b2579" metaid="G_b2579">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2579">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P68066" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008489" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11784" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947068" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130504" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3114" fbc:label="b3114" metaid="G_b3114">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3114">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P42632" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0010242" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12758" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947623" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:49176316" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3952" fbc:label="b3952" metaid="G_b3952">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3952">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P32675" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012937" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11911" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948453" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:49176447" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0902" fbc:label="b0902" metaid="G_b0902">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0902">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A9N4" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003068" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10028" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945517" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128869" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0903" fbc:label="b0903" metaid="G_b0903">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0903">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P09373" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003071" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10701" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945514" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128870" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3951" fbc:label="b3951" metaid="G_b3951">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3951">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P32674" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012934" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11910" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948454" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131789" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4152" fbc:label="b4152" metaid="G_b4152">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4152">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A8Q0" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013598" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10332" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948680" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131977" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4153" fbc:label="b4153" metaid="G_b4153">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4153">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AC47" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013602" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10331" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948666" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131978" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4154" fbc:label="b4154" metaid="G_b4154">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4154">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P00363" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013604" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10330" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948667" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131979" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4151" fbc:label="b4151" metaid="G_b4151">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4151">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A8Q3" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013595" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10333" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948668" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131976" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0871" fbc:label="b0871" metaid="G_b0871">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0871">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P07003" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002958" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10754" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946132" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128839" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2297" fbc:label="b2297" metaid="G_b2297">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2297">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A9M8" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007582" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG20173" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946778" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130232" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2458" fbc:label="b2458" metaid="G_b2458">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2458">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77218" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008097" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG14188" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946940" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130383" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3115" fbc:label="b3115" metaid="G_b3115">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3115">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P11868" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0010245" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11172" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947635" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:145698313" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1849" fbc:label="b1849" metaid="G_b1849">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1849">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P33221" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006162" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11809" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946368" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129802" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2296" fbc:label="b2296" metaid="G_b2296">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2296">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A6A3" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007579" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10027" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946775" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130231" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3633" fbc:label="b3633" metaid="G_b3633">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3633">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AC75" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011873" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10520" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/949048" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131504" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0174" fbc:label="b0174" metaid="G_b0174">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0174">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P60472" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000595" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13329" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944874" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128167" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0524" fbc:label="b0524" metaid="G_b0524">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0524">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P43341" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001804" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12666" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/949053" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128508" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0182" fbc:label="b0182" metaid="G_b0182">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0182">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P10441" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000620" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10546" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944838" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128175" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0915" fbc:label="b0915" metaid="G_b0915">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0915">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P27300" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003115" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11409" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945526" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128882" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2781" fbc:label="b2781" metaid="G_b2781">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2781">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AEY3" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009117" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10572" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947254" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130688" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0099" fbc:label="b0099" metaid="G_b0099">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0099">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P08337" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000346" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10626" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944824" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128092" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0160" fbc:label="b0160" metaid="G_b0160">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0160">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P15723" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000548" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10225" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947177" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128153" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0073" fbc:label="b0073" metaid="G_b0073">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0073">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P30125" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000265" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11577" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944798" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111082" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1800" fbc:label="b1800" metaid="G_b1800">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1800">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P76251" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005991" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13507" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946319" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129754" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0523" fbc:label="b0523" metaid="G_b0523">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0523">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AG18" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001796" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10793" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/949031" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128507" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1131" fbc:label="b1131" metaid="G_b1131">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1131">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AB89" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003810" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11314" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945695" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129094" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2407" fbc:label="b2407" metaid="G_b2407">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2407">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P45563" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007927" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG20250" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946878" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130333" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2235" fbc:label="b2235" metaid="G_b2235">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2235">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P69924" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007386" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10661" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946732" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130170" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3781" fbc:label="b3781" metaid="G_b3781">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3781">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AA25" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012357" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11031" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948289" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:67005950" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2582" fbc:label="b2582" metaid="G_b2582">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2582">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AGG4" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008501" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11887" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947062" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130507" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2234" fbc:label="b2234" metaid="G_b2234">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2234">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P00452" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007383" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10660" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946612" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130169" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2827" fbc:label="b2827" metaid="G_b2827">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2827">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A884" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009268" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11002" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/949035" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130731" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1238" fbc:label="b1238" metaid="G_b1238">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1238">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P23331" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004157" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10994" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945834" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129199" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3639" fbc:label="b3639" metaid="G_b3639">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3639">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0ABQ0" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011896" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10004" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/949047" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111624" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1232" fbc:label="b1232" metaid="G_b1232">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1232">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P37051" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004138" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11819" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945827" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129193" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1851" fbc:label="b1851" metaid="G_b1851">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1851">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0ADF6" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006166" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10257" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946362" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129804" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1693" fbc:label="b1693" metaid="G_b1693">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1693">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P05194" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005653" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10076" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946210" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129649" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4146" fbc:label="b4146" metaid="G_b4146">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4146">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P39280" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013580" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12473" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948662" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131971" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1004" fbc:label="b1004" metaid="G_b1004">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1004">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A8G6" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003392" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11540" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947263" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128970" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3713" fbc:label="b3713" metaid="G_b3713">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3713">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AGE6" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012146" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11723" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948225" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131581" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1109" fbc:label="b1109" metaid="G_b1109">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1109">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P00393" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003746" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10649" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946792" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129072" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0046" fbc:label="b0046" metaid="G_b0046">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0046">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A754" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000159" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11568" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944767" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128040" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3236" fbc:label="b3236" metaid="G_b3236">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3236">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P61889" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0010613" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10576" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947854" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131126" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1612" fbc:label="b1612" metaid="G_b1612">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1612">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AC33" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005392" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10356" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946826" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129570" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1611" fbc:label="b1611" metaid="G_b1611">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1611">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P05042" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005380" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10358" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946147" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129569" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4122" fbc:label="b4122" metaid="G_b4122">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4122">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P14407" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013501" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10357" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948642" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131948" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1638" fbc:label="b1638" metaid="G_b1638">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1638">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AFI7" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005482" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11487" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946806" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129596" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0907" fbc:label="b0907" metaid="G_b0907">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0907">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P23721" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003093" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10946" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945527" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128874" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1210" fbc:label="b1210" metaid="G_b1210">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1210">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A6X1" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004064" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10427" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945777" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129173" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3429" fbc:label="b3429" metaid="G_b3429">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3429">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A6U8" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011200" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10377" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947932" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131303" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3428" fbc:label="b3428" metaid="G_b3428">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3428">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AC86" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011198" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10380" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947931" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131302" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3417" fbc:label="b3417" metaid="G_b3417">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3417">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P00490" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011154" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10560" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947922" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:49176351" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0428" fbc:label="b0428" metaid="G_b0428">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0428">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AEA5" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001484" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10182" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945073" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128413" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0120" fbc:label="b0120" metaid="G_b0120">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0120">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A7F6" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000416" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10962" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947719" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128113" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2937" fbc:label="b2937" metaid="G_b2937">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2937">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P60651" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009632" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10960" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947715" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130838" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4117" fbc:label="b4117" metaid="G_b4117">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4117">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P28629" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013483" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11501" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948638" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:221800782" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3172" fbc:label="b3172" metaid="G_b3172">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3172">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A6E4" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0010428" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10068" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947590" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131063" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3958" fbc:label="b3958" metaid="G_b3958">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3958">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P11446" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012964" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10065" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948455" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131796" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0121" fbc:label="b0121" metaid="G_b0121">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0121">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P09158" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000418" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10963" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947726" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128114" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0154" fbc:label="b0154" metaid="G_b0154">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0154">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P23893" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000529" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10432" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946892" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128147" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0918" fbc:label="b0918" metaid="G_b0918">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0918">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P04951" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003122" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10519" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945539" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128885" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4322" fbc:label="b4322" metaid="G_b4322">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4322">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P24215" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0014173" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11066" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947082" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16132143" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3091" fbc:label="b3091" metaid="G_b3091">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3091">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P42604" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0010164" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12734" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947603" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130986" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3092" fbc:label="b3092" metaid="G_b3092">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3092">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A8G3" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0010167" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12737" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947599" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130987" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3176" fbc:label="b3176" metaid="G_b3176">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3176">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P31120" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0010439" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11553" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947692" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131066" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3730" fbc:label="b3730" metaid="G_b3730">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3730">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0ACC7" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012201" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11198" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948246" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131598" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3189" fbc:label="b3189" metaid="G_b3189">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3189">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A749" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0010479" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11358" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947703" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131079" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3967" fbc:label="b3967" metaid="G_b3967">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3967">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P22634" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012989" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11204" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948467" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111671" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3786" fbc:label="b3786" metaid="G_b3786">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3786">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P27828" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012372" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11451" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944789" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:49176409" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2323" fbc:label="b2323" metaid="G_b2323">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2323">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A953" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007675" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10274" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946799" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130258" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2232" fbc:label="b2232" metaid="G_b2232">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2232">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P17993" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007374" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11143" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946607" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130167" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0593" fbc:label="b0593" metaid="G_b0593">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0593">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AEJ2" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002047" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10261" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945511" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128576" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0142" fbc:label="b0142" metaid="G_b0142">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0142">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P26281" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000491" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11374" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948792" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128135" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3634" fbc:label="b3634" metaid="G_b3634">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3634">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A6I6" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011875" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11190" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947386" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131505" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0394" fbc:label="b0394" metaid="G_b0394">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0394">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P23917" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001372" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11288" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/949086" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111128" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0173" fbc:label="b0173" metaid="G_b0173">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0173">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P45568" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000592" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12715" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945019" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128166" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3843" fbc:label="b3843" metaid="G_b3843">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3843">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AAB4" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012557" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11396" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948326" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131689" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0477" fbc:label="b0477" metaid="G_b0477">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0477">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AEW6" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001655" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11102" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946584" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128461" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1302" fbc:label="b1302" metaid="G_b1302">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1302">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P50457" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004380" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13187" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945446" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129263" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2662" fbc:label="b2662" metaid="G_b2662">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2662">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P22256" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008760" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10361" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948067" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130576" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1525" fbc:label="b1525" metaid="G_b1525">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1525">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P76149" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005092" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13817" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947440" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111288" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4139" fbc:label="b4139" metaid="G_b4139">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4139">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AC38" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013551" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10095" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948658" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111690" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2797" fbc:label="b2797" metaid="G_b2797">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2797">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P30744" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009172" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11623" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947262" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130704" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3117" fbc:label="b3117" metaid="G_b3117">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3117">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AGF6" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0010249" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10990" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947633" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131010" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1814" fbc:label="b1814" metaid="G_b1814">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1814">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P16095" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006039" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10930" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946331" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129768" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4471" fbc:label="b4471" metaid="G_b4471">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4471">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P42630" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0174101" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12756" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/2847724" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:49176314" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3616" fbc:label="b3616" metaid="G_b3616">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3616">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P07913" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011830" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10993" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948139" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131487" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3589" fbc:label="b3589" metaid="G_b3589">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3589">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P37686" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011725" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12293" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948102" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:49176377" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3774" fbc:label="b3774" metaid="G_b3774">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3774">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P05793" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012331" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10495" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948286" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131632" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2316" fbc:label="b2316" metaid="G_b2316">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2316">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A9Q5" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007648" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10217" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946796" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130251" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3255" fbc:label="b3255" metaid="G_b3255">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3255">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0ABD8" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0010675" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10275" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947758" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131143" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0185" fbc:label="b0185" metaid="G_b0185">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0185">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0ABD5" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000630" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11647" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944895" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128178" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3256" fbc:label="b3256" metaid="G_b3256">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3256">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P24182" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0010677" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10276" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947761" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131144" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2615" fbc:label="b2615" metaid="G_b2615">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2615">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A7B3" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008603" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12192" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947092" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130534" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2265" fbc:label="b2265" metaid="G_b2265">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2265">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P38051" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007485" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12362" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946712" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111411" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2261" fbc:label="b2261" metaid="G_b2261">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2261">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P29208" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007473" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11532" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946734" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130196" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0596" fbc:label="b0596" metaid="G_b0596">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0596">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P15047" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002054" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10259" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945284" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128579" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0595" fbc:label="b0595" metaid="G_b0595">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0595">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0ADI4" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002052" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10260" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946178" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128578" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3583" fbc:label="b3583" metaid="G_b3583">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3583">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P37680" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011702" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12287" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948099" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131454" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0061" fbc:label="b0061" metaid="G_b0061">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0061">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P08203" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000209" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10055" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945294" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128055" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4198" fbc:label="b4198" metaid="G_b4198">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4198">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P39306" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013734" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12498" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948711" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16132020" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4374" fbc:label="b4374" metaid="G_b4374">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4374">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A8Y1" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0014344" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12115" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948899" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16132192" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0675" fbc:label="b0675" metaid="G_b0675">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0675">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AF24" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002296" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10634" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945283" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128651" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2361" fbc:label="b2361" metaid="G_b2361">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2361">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P76514" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007791" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG14140" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946834" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111424" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2291" fbc:label="b2291" metaid="G_b2291">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2291">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P76491" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007563" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG14102" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946771" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130226" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1651" fbc:label="b1651" metaid="G_b1651">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1651">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AC81" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005520" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13421" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946161" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129609" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0766" fbc:label="b0766" metaid="G_b0766">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0766">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P21829" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002607" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11239" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945372" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128734" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3826" fbc:label="b3826" metaid="G_b3826">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3826">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P27848" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012500" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11470" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/2847768" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:49176424" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0758" fbc:label="b0758" metaid="G_b0758">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0758">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P09148" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002573" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10366" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945357" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128726" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0420" fbc:label="b0420" metaid="G_b0420">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0420">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77488" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001461" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13612" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945060" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128405" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1208" fbc:label="b1208" metaid="G_b1208">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1208">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P62615" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004056" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11294" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945774" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129171" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2746" fbc:label="b2746" metaid="G_b2746">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2746">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P62617" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009013" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11816" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945057" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130653" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3526" fbc:label="b3526" metaid="G_b3526">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3526">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P37647" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011519" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12253" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948041" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111606" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3565" fbc:label="b3565" metaid="G_b3565">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3565">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P00944" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011639" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11074" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948141" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131436" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2048" fbc:label="b2048" metaid="G_b2048">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2048">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P24175" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006788" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10162" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946574" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129988" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4015" fbc:label="b4015" metaid="G_b4015">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4015">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A9G6" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013128" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10022" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948517" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131841" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2904" fbc:label="b2904" metaid="G_b2904">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2904">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A6T9" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009534" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10371" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947393" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130806" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0116" fbc:label="b0116" metaid="G_b0116">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0116">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A9P0" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000404" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10543" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944854" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128109" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2905" fbc:label="b2905" metaid="G_b2905">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2905">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P27248" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009536" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11442" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947390" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130807" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2903" fbc:label="b2903" metaid="G_b2903">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2903">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P33195" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009531" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11810" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947394" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130805" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0261" fbc:label="b0261" metaid="G_b0261">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0261">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/Q47690" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000895" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13343" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946143" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128246" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0759" fbc:label="b0759" metaid="G_b0759">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0759">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P09147" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002575" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10362" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945354" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:49176045" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0344" fbc:label="b0344" metaid="G_b0344">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0344">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P00722" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001183" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10527" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945006" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128329" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4239" fbc:label="b4239" metaid="G_b4239">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4239">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P28904" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013870" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11402" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948762" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16132061" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3956" fbc:label="b3956" metaid="G_b3956">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3956">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P00864" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012950" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10756" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948457" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131794" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0822" fbc:label="b0822" metaid="G_b0822">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0822">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P75792" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002807" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13327" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945432" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128790" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2540" fbc:label="b2540" metaid="G_b2540">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2540">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0ABW0" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008359" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13458" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947015" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130465" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2538" fbc:label="b2538" metaid="G_b2538">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2538">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0ABR5" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008355" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13456" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946998" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130463" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2539" fbc:label="b2539" metaid="G_b2539">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2539">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/Q47140" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008357" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13457" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946997" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130464" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2542" fbc:label="b2542" metaid="G_b2542">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2542">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77650" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008363" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13460" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945427" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130467" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2541" fbc:label="b2541" metaid="G_b2541">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2541">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0CI31" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008361" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13459" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945346" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130466" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0616" fbc:label="b0616" metaid="G_b0616">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0616">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A9I1" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002122" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13542" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945406" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111153" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0617" fbc:label="b0617" metaid="G_b0617">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0617">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P69330" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002124" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13543" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945415" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128600" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0614" fbc:label="b0614" metaid="G_b0614">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0614">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A6G5" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002116" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13540" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/949084" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128597" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0615" fbc:label="b0615" metaid="G_b0615">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0615">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P75726" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002119" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13541" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945230" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128598" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2052" fbc:label="b2052" metaid="G_b2052">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2052">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P32055" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006801" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11788" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946563" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129992" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1636" fbc:label="b1636" metaid="G_b1636">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1636">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77150" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005475" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13940" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946162" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129594" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1277" fbc:label="b1277" metaid="G_b1277">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1277">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A7I7" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004285" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11331" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945763" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129238" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2752" fbc:label="b2752" metaid="G_b2752">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2752">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P21156" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009029" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10186" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947217" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130659" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2751" fbc:label="b2751" metaid="G_b2751">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2751">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P23845" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009026" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10194" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947219" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130658" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2799" fbc:label="b2799" metaid="G_b2799">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2799">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A9S1" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009177" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10351" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947273" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:345452723" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3902" fbc:label="b3902" metaid="G_b3902">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3902">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P32169" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012731" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11866" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948401" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131742" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2705" fbc:label="b2705" metaid="G_b2705">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2705">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P05707" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008896" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10971" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948937" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130612" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2091" fbc:label="b2091" metaid="G_b2091">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2091">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A9S3" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006924" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12417" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946598" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130029" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3137" fbc:label="b3137" metaid="G_b3137">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3137">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AB74" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0010307" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12768" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947644" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131029" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2096" fbc:label="b2096" metaid="G_b2096">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2096">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0C8J6" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006938" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12419" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946636" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111384" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3132" fbc:label="b3132" metaid="G_b3132">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3132">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0C8K0" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0010295" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12763" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947637" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131024" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2095" fbc:label="b2095" metaid="G_b2095">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2095">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0C8J8" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006934" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12418" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946641" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130033" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4323" fbc:label="b4323" metaid="G_b4323">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4323">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P39160" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0014175" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG20248" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946795" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16132144" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1521" fbc:label="b1521" metaid="G_b1521">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1521">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A6L7" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005076" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11065" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945542" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:49176119" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3385" fbc:label="b3385" metaid="G_b3385">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3385">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P32662" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011058" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11871" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947895" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131263" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0507" fbc:label="b0507" metaid="G_b0507">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0507">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AEP7" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001754" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11583" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945394" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128491" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3061" fbc:label="b3061" metaid="G_b3061">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3061">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P05847" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0010050" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11168" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947565" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130957" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3062" fbc:label="b3062" metaid="G_b3062">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3062">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AC35" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0010052" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11169" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947568" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130958" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3126" fbc:label="b3126" metaid="G_b3126">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3126">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P23522" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0010276" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10016" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947630" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131018" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1095" fbc:label="b1095" metaid="G_b1095">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1095">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AAI5" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003705" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12606" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946665" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129058" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1054" fbc:label="b1054" metaid="G_b1054">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1054">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0ACV0" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003574" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10464" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946216" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129017" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1855" fbc:label="b1855" metaid="G_b1855">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1855">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P24205" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006185" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10614" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945143" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129808" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2378" fbc:label="b2378" metaid="G_b2378">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2378">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0ACV2" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007848" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12901" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946847" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111426" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0109" fbc:label="b0109" metaid="G_b0109">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0109">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P30011" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000374" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11546" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948869" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128102" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1094" fbc:label="b1094" metaid="G_b1094">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1094">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A6A8" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003703" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG50003" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944805" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129057" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2836" fbc:label="b2836" metaid="G_b2836">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2836">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P31119" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009302" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11679" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947315" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130740" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2472" fbc:label="b2472" metaid="G_b2472">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2472">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AED7" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008142" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10208" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948313" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130397" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1590" fbc:label="b1590" metaid="G_b1590">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1590">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P76173" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005311" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13846" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945822" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129548" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0894" fbc:label="b0894" metaid="G_b0894">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0894">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P18775" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003044" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10232" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945508" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111183" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1588" fbc:label="b1588" metaid="G_b1588">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1588">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77783" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005307" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13844" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945268" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:171701681" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1587" fbc:label="b1587" metaid="G_b1587">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1587">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77374" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005302" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13843" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946135" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129545" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0896" fbc:label="b0896" metaid="G_b0896">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0896">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P18777" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003048" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10234" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945502" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128863" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1589" fbc:label="b1589" metaid="G_b1589">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1589">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AAJ1" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005309" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13845" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945638" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129547" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0895" fbc:label="b0895" metaid="G_b0895">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0895">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P18776" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003046" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10233" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945507" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128862" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3553" fbc:label="b3553" metaid="G_b3553">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3553">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P37666" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011604" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12272" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948074" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111614" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0638" fbc:label="b0638" metaid="G_b0638">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0638">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P52086" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002185" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13240" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945246" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128621" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3399" fbc:label="b3399" metaid="G_b3399">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3399">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P64636" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011092" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12928" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947904" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111585" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0469" fbc:label="b0469" metaid="G_b0469">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0469">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P69503" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001628" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10051" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945113" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128453" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3187" fbc:label="b3187" metaid="G_b3187">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3187">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AD57" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0010474" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10017" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947364" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131077" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3222" fbc:label="b3222" metaid="G_b3222">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3222">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P45425" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0010571" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12815" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947757" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111558" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3225" fbc:label="b3225" metaid="G_b3225">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3225">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A6L4" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0010579" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10637" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947742" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131115" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3942" fbc:label="b3942" metaid="G_b3942">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3942">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P13029" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012901" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10511" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948431" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131780" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1732" fbc:label="b1732" metaid="G_b1732">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1732">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P21179" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005780" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10509" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946234" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:49176140" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0586" fbc:label="b0586" metaid="G_b0586">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0586">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P11454" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002021" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10264" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945184" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128569" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3794" fbc:label="b3794" metaid="G_b3794">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3794">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P27836" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012394" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11458" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948301" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131650" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3693" fbc:label="b3693" metaid="G_b3693">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3693">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P31459" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012076" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11717" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948207" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131561" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2901" fbc:label="b2901" metaid="G_b2901">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2901">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/Q46829" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009523" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13079" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947378" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130803" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2716" fbc:label="b2716" metaid="G_b2716">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2716">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P24240" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008928" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10085" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947460" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130623" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3721" fbc:label="b3721" metaid="G_b3721">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3721">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P11988" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012169" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10114" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948234" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131589" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3416" fbc:label="b3416" metaid="G_b3416">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3416">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P15977" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011151" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10561" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947923" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131292" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1398" fbc:label="b1398" metaid="G_b1398">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1398">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P76085" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004671" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13745" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945963" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129359" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0049" fbc:label="b0049" metaid="G_b0049">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0049">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P05637" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000167" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10048" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944770" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128043" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3784" fbc:label="b3784" metaid="G_b3784">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3784">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AC78" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012366" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10840" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948789" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131640" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4481" fbc:label="b4481" metaid="G_b4481">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4481">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P56258" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0174115" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG14320" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/2847677" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:49176413" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3052" fbc:label="b3052" metaid="G_b3052">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3052">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P76658" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0010015" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13416" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947548" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130948" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1896" fbc:label="b1896" metaid="G_b1896">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1896">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P31677" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006318" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11751" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946405" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129848" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0841" fbc:label="b0841" metaid="G_b0841">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0841">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P75806" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002865" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13676" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945450" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128809" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1278" fbc:label="b1278" metaid="G_b1278">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1278">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A924" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004294" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10705" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945863" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129239" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3057" fbc:label="b3057" metaid="G_b3057">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3057">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P60932" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0010034" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11665" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947551" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130953" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3519" fbc:label="b3519" metaid="G_b3519">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3519">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P62601" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011497" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12245" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948037" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131391" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0910" fbc:label="b0910" metaid="G_b0910">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0910">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A6I0" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003101" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11265" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945535" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128877" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3648" fbc:label="b3648" metaid="G_b3648">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3648">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P60546" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011930" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10965" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948163" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131519" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2221" fbc:label="b2221" metaid="G_b2221">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2221">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P76458" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007347" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11669" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947525" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130158" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2222" fbc:label="b2222" metaid="G_b2222">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2222">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P76459" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007349" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11670" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946719" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130159" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1694" fbc:label="b1694" metaid="G_b1694">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1694">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P37766" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005656" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12432" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946211" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129650" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2039" fbc:label="b2039" metaid="G_b2039">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2039">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P37744" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006762" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11978" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945154" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129979" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3789" fbc:label="b3789" metaid="G_b3789">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3789">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P61887" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012379" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11454" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948299" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131645" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2041" fbc:label="b2041" metaid="G_b2041">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2041">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P37759" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006766" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12412" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945276" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129981" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3788" fbc:label="b3788" metaid="G_b3788">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3788">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P27830" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012376" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11453" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948300" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:49176411" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2036" fbc:label="b2036" metaid="G_b2036">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2036">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P37747" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006755" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11981" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945235" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129976" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2038" fbc:label="b2038" metaid="G_b2038">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2038">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P37745" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006759" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11979" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947482" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129978" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2040" fbc:label="b2040" metaid="G_b2040">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2040">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P37760" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006764" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12411" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947117" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129980" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0512" fbc:label="b0512" metaid="G_b0512">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0512">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77671" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001768" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13619" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945134" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128496" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3972" fbc:label="b3972" metaid="G_b3972">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3972">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P08373" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012999" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11205" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948470" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131806" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_s0001" fbc:label="s0001" />
-      <fbc:geneProduct fbc:id="G_b3617" fbc:label="b3617" metaid="G_b3617">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3617">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AB77" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011832" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10512" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948138" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131488" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0030" fbc:label="b0030" metaid="G_b0030">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0030">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P22564" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000109" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11082" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944796" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128024" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0200" fbc:label="b0200" metaid="G_b0200">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0200">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P63228" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000675" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11736" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944879" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128193" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0222" fbc:label="b0222" metaid="G_b0222">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0222">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P63224" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000751" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13146" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/949134" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128208" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0038" fbc:label="b0038" metaid="G_b0038">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0038">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P31572" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000136" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11559" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948997" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128032" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0036" fbc:label="b0036" metaid="G_b0036">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0036">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P31551" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000130" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11557" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948995" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:221800779" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3844" fbc:label="b3844" metaid="G_b3844">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3844">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AEN1" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012559" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10334" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948325" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131690" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2784" fbc:label="b2784" metaid="G_b2784">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2784">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AG20" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009125" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10835" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947244" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130691" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2431" fbc:label="b2431" metaid="G_b2431">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2431">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P76536" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008015" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG14165" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946913" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111433" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1019" fbc:label="b1019" metaid="G_b1019">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1019">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P31545" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003451" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11735" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946500" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128983" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0475" fbc:label="b0475" metaid="G_b0475">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0475">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P23871" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001649" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10431" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947532" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128459" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4040" fbc:label="b4040" metaid="G_b4040">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4040">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AGK1" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013229" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11370" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948540" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131866" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3974" fbc:label="b3974" metaid="G_b3974">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3974">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A6I3" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013003" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10922" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948479" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131808" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0103" fbc:label="b0103" metaid="G_b0103">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0103">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A6I9" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000357" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12312" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/949060" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128096" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2104" fbc:label="b2104" metaid="G_b2104">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2104">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P76423" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006960" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG14069" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945142" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130042" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1215" fbc:label="b1215" metaid="G_b1215">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1215">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A715" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004077" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10518" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945785" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129178" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3198" fbc:label="b3198" metaid="G_b3198">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3198">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0ABZ4" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0010506" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12804" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947717" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131088" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1747" fbc:label="b1747" metaid="G_b1747">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1747">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AE37" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005822" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13998" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946261" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129701" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1744" fbc:label="b1744" metaid="G_b1744">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1744">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P76215" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005815" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13995" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946256" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129698" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0340" fbc:label="b0340" metaid="G_b0340">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0340">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P00816" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001173" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10175" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948998" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128325" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2988" fbc:label="b2988" metaid="G_b2988">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2988">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AES0" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009804" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12882" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947474" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130888" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2883" fbc:label="b2883" metaid="G_b2883">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2883">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P76641" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009465" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13066" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947366" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130785" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1098" fbc:label="b1098" metaid="G_b1098">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1098">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A720" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003714" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12302" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945663" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129061" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0888" fbc:label="b0888" metaid="G_b0888">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0888">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A9P4" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003018" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11032" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/949054" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128855" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0688" fbc:label="b0688" metaid="G_b0688">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0688">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P36938" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002345" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12144" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945271" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128664" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1317" fbc:label="b1317" metaid="G_b1317">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1317">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77366" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004420" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13918" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945891" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129278" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2690" fbc:label="b2690" metaid="G_b2690">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2690">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77475" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008850" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13530" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945776" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130602" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2168" fbc:label="b2168" metaid="G_b2168">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2168">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AEW9" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007174" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10337" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946676" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130106" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2687" fbc:label="b2687" metaid="G_b2687">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2687">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P45578" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008842" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12712" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947168" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130599" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4196" fbc:label="b4196" metaid="G_b4196">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4196">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P39304" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013729" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12496" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948714" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16132018" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3581" fbc:label="b3581" metaid="G_b3581">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3581">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P37678" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011698" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12285" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948098" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131452" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3582" fbc:label="b3582" metaid="G_b3582">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3582">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P37679" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011700" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12286" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948100" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111618" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4197" fbc:label="b4197" metaid="G_b4197">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4197">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P39305" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013732" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12497" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948712" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16132019" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3575" fbc:label="b3575" metaid="G_b3575">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3575">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P37672" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011682" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12279" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948096" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131446" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0312" fbc:label="b0312" metaid="G_b0312">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0312">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P17445" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001072" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10110" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947376" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128297" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0403" fbc:label="b0403" metaid="G_b0403">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0403">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P21517" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001402" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10565" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/949131" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:345452716" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0207" fbc:label="b0207" metaid="G_b0207">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0207">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P30863" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000692" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11648" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944901" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128194" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3012" fbc:label="b3012" metaid="G_b3012">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3012">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/Q46857" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009892" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13015" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947495" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111527" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3962" fbc:label="b3962" metaid="G_b3962">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3962">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P27306" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012975" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11428" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948461" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111670" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0937" fbc:label="b0937" metaid="G_b0937">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0937">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P80644" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003182" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13708" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945947" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128904" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2763" fbc:label="b2763" metaid="G_b2763">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2763">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P17846" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009061" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10190" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947231" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130670" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2764" fbc:label="b2764" metaid="G_b2764">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2764">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P38038" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009063" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10191" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947239" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130671" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2563" fbc:label="b2563" metaid="G_b2563">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2563">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P24224" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008433" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10247" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947037" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130488" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3475" fbc:label="b3475" metaid="G_b3475">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3475">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P37623" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011351" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12221" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947979" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131347" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2507" fbc:label="b2507" metaid="G_b2507">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2507">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P04079" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008254" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10420" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947334" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130432" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1982" fbc:label="b1982" metaid="G_b1982">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1982">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AE12" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006579" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10039" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946508" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129926" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1812" fbc:label="b1812" metaid="G_b1812">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1812">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P05041" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006031" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10683" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946337" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129766" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3360" fbc:label="b3360" metaid="G_b3360">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3360">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P00903" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0010983" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10682" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947873" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131239" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1096" fbc:label="b1096" metaid="G_b1096">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1096">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P28305" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003709" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11493" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946647" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129059" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4039" fbc:label="b4039" metaid="G_b4039">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4039">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P26602" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013227" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11369" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948545" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111677" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1200" fbc:label="b1200" metaid="G_b1200">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1200">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P76015" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004029" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13901" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945747" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:162135900" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2415" fbc:label="b2415" metaid="G_b2415">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2415">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AA04" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007962" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10788" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946886" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130341" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1199" fbc:label="b1199" metaid="G_b1199">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1199">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P76014" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004026" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13900" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945748" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129162" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2416" fbc:label="b2416" metaid="G_b2416">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2416">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P08839" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007967" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10789" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946879" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130342" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1198" fbc:label="b1198" metaid="G_b1198">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1198">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P37349" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004024" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12399" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945749" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:226524708" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0171" fbc:label="b0171" metaid="G_b0171">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0171">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A7E9" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000582" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11539" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944989" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128164" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4477" fbc:label="b4477" metaid="G_b4477">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4477">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/Q6BF16" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0174107" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11716" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/2847766" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:49176391" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2498" fbc:label="b2498" metaid="G_b2498">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2498">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A8F0" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008224" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11332" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946979" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111448" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2780" fbc:label="b2780" metaid="G_b2780">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2780">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A7E5" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009112" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10810" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946116" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130687" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0087" fbc:label="b0087" metaid="G_b0087">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0087">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A6W3" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000316" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10604" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944814" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128080" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0090" fbc:label="b0090" metaid="G_b0090">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0090">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P17443" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000322" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10623" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946321" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128083" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3946" fbc:label="b3946" metaid="G_b3946">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3946">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P32669" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012915" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11905" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948439" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131784" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0825" fbc:label="b0825" metaid="G_b0825">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0825">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P78055" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002818" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13471" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945449" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111174" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3619" fbc:label="b3619" metaid="G_b3619">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3619">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P67910" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011843" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10838" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948134" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131490" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4267" fbc:label="b4267" metaid="G_b4267">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4267">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P39346" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013975" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12541" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944769" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16132089" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1033" fbc:label="b1033" metaid="G_b1033">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1033">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P75913" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003503" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13869" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946431" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111205" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3957" fbc:label="b3957" metaid="G_b3957">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3957">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P23908" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012955" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11286" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948456" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131795" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1623" fbc:label="b1623" metaid="G_b1623">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1623">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P22333" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005435" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10030" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945851" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129581" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3665" fbc:label="b3665" metaid="G_b3665">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3665">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P31441" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011979" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11692" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948210" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131535" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4177" fbc:label="b4177" metaid="G_b4177">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4177">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A7D4" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013672" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10790" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948695" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131999" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0677" fbc:label="b0677" metaid="G_b0677">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0677">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AF18" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002301" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10632" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945289" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128653" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1767" fbc:label="b1767" metaid="G_b1767">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1767">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A962" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005886" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10045" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946278" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129721" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0828" fbc:label="b0828" metaid="G_b0828">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0828">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P37595" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002828" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12407" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945456" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128796" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3744" fbc:label="b3744" metaid="G_b3744">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3744">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P00963" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012242" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10091" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948258" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131612" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0674" fbc:label="b0674" metaid="G_b0674">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0674">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P22106" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002292" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10092" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945281" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128650" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4244" fbc:label="b4244" metaid="G_b4244">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4244">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A7F3" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013889" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10811" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948763" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16132066" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4245" fbc:label="b4245" metaid="G_b4245">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4245">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A786" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013892" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10805" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948767" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16132067" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0029" fbc:label="b0029" metaid="G_b0029">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0029">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P62623" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000103" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11081" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944777" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128023" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1092" fbc:label="b1092" metaid="G_b1092">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1092">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AAI9" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003698" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11317" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945766" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129055" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3809" fbc:label="b3809" metaid="G_b3809">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3809">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A6K1" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012442" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10209" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948364" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111650" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0031" fbc:label="b0031" metaid="G_b0031">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0031">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P04036" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000112" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10206" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944762" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128025" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0003" fbc:label="b0003" metaid="G_b0003">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0003">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P00547" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000010" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10999" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947498" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16127997" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1748" fbc:label="b1748" metaid="G_b1748">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1748">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77581" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005824" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13999" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946255" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129702" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3359" fbc:label="b3359" metaid="G_b3359">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3359">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P18335" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0010976" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10066" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947864" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131238" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0004" fbc:label="b0004" metaid="G_b0004">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0004">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P00934" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000012" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11000" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945198" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16127998" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4013" fbc:label="b4013" metaid="G_b4013">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4013">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P07623" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013121" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10581" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948513" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131839" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2601" fbc:label="b2601" metaid="G_b2601">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2601">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P00888" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008549" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10078" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947084" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130522" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0754" fbc:label="b0754" metaid="G_b0754">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0754">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AB91" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002560" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10079" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945605" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128722" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1704" fbc:label="b1704" metaid="G_b1704">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1704">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P00887" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005686" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10080" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946229" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129660" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2700" fbc:label="b2700" metaid="G_b2700">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2700">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A6G3" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008882" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12698" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947169" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130607" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1768" fbc:label="b1768" metaid="G_b1768">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1768">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P21369" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005891" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11135" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946276" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111327" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1014" fbc:label="b1014" metaid="G_b1014">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1014">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P09546" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003424" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10801" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945600" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128980" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1584" fbc:label="b1584" metaid="G_b1584">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1584">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A951" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005286" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12447" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946117" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129542" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3790" fbc:label="b3790" metaid="G_b3790">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3790">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P27832" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012382" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11455" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948298" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:145698332" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4014" fbc:label="b4014" metaid="G_b4014">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4014">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P08997" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013125" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10023" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948512" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131840" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2976" fbc:label="b2976" metaid="G_b2976">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2976">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P37330" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009767" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG20080" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948857" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130876" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1897" fbc:label="b1897" metaid="G_b1897">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1897">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P31678" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006320" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11752" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946406" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129849" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3034" fbc:label="b3034" metaid="G_b3034">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3034">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/Q93K97" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009961" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12184" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947519" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130930" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3397" fbc:label="b3397" metaid="G_b3397">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3397">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P45799" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011086" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12926" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947906" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131274" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0062" fbc:label="b0062" metaid="G_b0062">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0062">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P08202" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000221" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10052" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947511" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128056" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3600" fbc:label="b3600" metaid="G_b3600">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3600">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P09424" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011767" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10616" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948117" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131471" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3608" fbc:label="b3608" metaid="G_b3608">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3608">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A6S7" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011795" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG20091" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948125" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131479" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4119" fbc:label="b4119" metaid="G_b4119">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4119">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P06720" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013493" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10577" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948636" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131945" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2802" fbc:label="b2802" metaid="G_b2802">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2802">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P69922" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009189" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10349" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946195" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130709" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2803" fbc:label="b2803" metaid="G_b2803">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2803">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P11553" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009191" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10350" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946022" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:674842733" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2800" fbc:label="b2800" metaid="G_b2800">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2800">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AB87" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009179" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10348" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947282" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130707" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2738" fbc:label="b2738" metaid="G_b2738">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2738">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/Q46890" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008994" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13106" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947197" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130645" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0335" fbc:label="b0335" metaid="G_b0335">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0335">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77495" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001154" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13604" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946891" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128320" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1236" fbc:label="b1236" metaid="G_b1236">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1236">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AEP3" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004150" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11319" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945730" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129197" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0179" fbc:label="b0179" metaid="G_b0179">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0179">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P21645" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000610" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10316" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944882" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128172" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0085" fbc:label="b0085" metaid="G_b0085">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0085">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P22188" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000311" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10621" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944791" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128078" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0091" fbc:label="b0091" metaid="G_b0091">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0091">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P17952" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000324" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10619" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946153" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128084" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0088" fbc:label="b0088" metaid="G_b0088">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0088">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P14900" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000318" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10620" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944818" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128081" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0505" fbc:label="b0505" metaid="G_b0505">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0505">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77731" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001747" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13615" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945141" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128489" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0350" fbc:label="b0350" metaid="G_b0350">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0350">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77608" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001205" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG14274" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944768" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111116" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0352" fbc:label="b0352" metaid="G_b0352">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0352">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P51020" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001209" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13292" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945012" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128337" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0347" fbc:label="b0347" metaid="G_b0347">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0347">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77397" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001196" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG20273" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945197" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128332" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0726" fbc:label="b0726" metaid="G_b0726">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0726">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AFG3" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002478" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10979" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945303" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128701" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0727" fbc:label="b0727" metaid="G_b0727">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0727">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AFG6" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002480" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10980" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945307" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128702" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3945" fbc:label="b3945" metaid="G_b3945">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3945">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A9S5" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012912" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11904" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948440" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111668" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0131" fbc:label="b0131" metaid="G_b0131">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0131">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A790" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000459" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11747" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945686" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128124" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0086" fbc:label="b0086" metaid="G_b0086">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0086">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P11880" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000313" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10622" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944813" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128079" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0096" fbc:label="b0096" metaid="G_b0096">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0096">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A725" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000336" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10265" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944816" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128089" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0181" fbc:label="b0181" metaid="G_b0181">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0181">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A722" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000618" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10545" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944849" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128174" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2019" fbc:label="b2019" metaid="G_b2019">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2019">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P60757" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006713" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10449" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946549" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129960" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2020" fbc:label="b2020" metaid="G_b2020">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2020">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P06988" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006715" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10447" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946531" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129961" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2022" fbc:label="b2022" metaid="G_b2022">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2022">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P06987" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006720" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10445" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946552" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111373" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1207" fbc:label="b1207" metaid="G_b1207">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1207">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A717" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004054" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10774" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945772" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129170" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2026" fbc:label="b2026" metaid="G_b2026">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2026">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P06989" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006729" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10451" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946515" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129967" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2024" fbc:label="b2024" metaid="G_b2024">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2024">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P10371" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006725" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10444" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946521" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111374" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3607" fbc:label="b3607" metaid="G_b3607">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3607">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A9D4" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011793" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10187" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948126" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131478" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2421" fbc:label="b2421" metaid="G_b2421">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2421">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P16703" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007982" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10193" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946888" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130347" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2414" fbc:label="b2414" metaid="G_b2414">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2414">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0ABK5" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007957" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10192" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946877" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130340" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4214" fbc:label="b4214" metaid="G_b4214">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4214">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P22255" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013786" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10043" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948728" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16132036" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2762" fbc:label="b2762" metaid="G_b2762">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2762">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P17854" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009057" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10189" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947230" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130669" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4024" fbc:label="b4024" metaid="G_b4024">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4024">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P08660" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013156" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10550" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948531" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131850" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0002" fbc:label="b0002" metaid="G_b0002">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0002">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P00561" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000008" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10998" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945803" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16127996" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3940" fbc:label="b3940" metaid="G_b3940">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3940">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P00562" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012889" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10590" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948433" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131778" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3433" fbc:label="b3433" metaid="G_b3433">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3433">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A9Q9" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011211" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10088" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947939" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131307" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2838" fbc:label="b2838" metaid="G_b2838">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2838">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P00861" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009309" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10549" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947313" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130742" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2942" fbc:label="b2942" metaid="G_b2942">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2942">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A817" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009650" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10589" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945389" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130843" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4192" fbc:label="b4192" metaid="G_b4192">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4192">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P39300" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013717" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12492" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948705" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111702" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1993" fbc:label="b1993" metaid="G_b1993">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1993">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AE76" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006616" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13238" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946519" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129934" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1992" fbc:label="b1992" metaid="G_b1992">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1992">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P36561" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006613" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12150" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946520" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129933" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0417" fbc:label="b0417" metaid="G_b0417">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0417">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AGG0" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001452" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG20227" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947387" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128402" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0348" fbc:label="b0348" metaid="G_b0348">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0348">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0ABR9" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001198" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG20274" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945047" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128333" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0349" fbc:label="b0349" metaid="G_b0349">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0349">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77044" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001201" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG20275" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944954" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:459201369" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3124" fbc:label="b3124" metaid="G_b3124">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3124">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P23524" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0010271" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11175" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947632" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:145698314" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0583" fbc:label="b0583" metaid="G_b0583">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0583">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P19925" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002009" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10262" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945194" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:345452717" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0732" fbc:label="b0732" metaid="G_b0732">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0732">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P54746" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002495" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13236" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945359" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128707" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0517" fbc:label="b0517" metaid="G_b0517">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0517">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77555" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001780" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13624" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948342" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128501" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0521" fbc:label="b0521" metaid="G_b0521">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0521">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P37306" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001791" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12384" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944972" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128505" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3223" fbc:label="b3223" metaid="G_b3223">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3223">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A761" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0010575" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12816" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947745" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131113" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2428" fbc:label="b2428" metaid="G_b2428">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2428">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P76535" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008007" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG14162" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946893" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130353" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0651" fbc:label="b0651" metaid="G_b0651">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0651">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P41409" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002227" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12701" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945503" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128634" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2162" fbc:label="b2162" metaid="G_b2162">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2162">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P33022" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007156" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12030" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946646" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130100" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0522" fbc:label="b0522" metaid="G_b0522">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0522">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P09029" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001794" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10796" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945153" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128506" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1779" fbc:label="b1779" metaid="G_b1779">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1779">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A9B2" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005920" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10367" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947679" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129733" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2388" fbc:label="b2388" metaid="G_b2388">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2388">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A6V8" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007875" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12957" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946858" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130320" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2029" fbc:label="b2029" metaid="G_b2029">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2029">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P00350" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006737" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10411" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946554" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129970" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0368" fbc:label="b0368" metaid="G_b0368">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0368">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P37610" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001263" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12423" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945021" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128353" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2463" fbc:label="b2463" metaid="G_b2463">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2463">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P76558" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008111" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG14193" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946947" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130388" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3960" fbc:label="b3960" metaid="G_b3960">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3960">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P11447" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012969" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11223" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948463" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131798" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0033" fbc:label="b0033" metaid="G_b0033">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0033">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P00968" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000121" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10135" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944775" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128027" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0032" fbc:label="b0032" metaid="G_b0032">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0032">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A6F1" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000118" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10134" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/949025" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128026" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0242" fbc:label="b0242" metaid="G_b0242">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0242">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A7B5" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000830" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10768" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946425" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128228" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0074" fbc:label="b0074" metaid="G_b0074">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0074">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P09151" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000267" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11226" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947465" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128068" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1091" fbc:label="b1091" metaid="G_b1091">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1091">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A6R0" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003696" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10277" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946003" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129054" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3908" fbc:label="b3908" metaid="G_b3908">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3908">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P00448" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012761" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10953" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948403" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:49176442" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1656" fbc:label="b1656" metaid="G_b1656">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1656">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AGD3" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005537" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10954" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944953" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129614" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0159" fbc:label="b0159" metaid="G_b0159">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0159">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AF12" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000545" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11090" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948542" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128152" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1106" fbc:label="b1106" metaid="G_b1106">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1106">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P75948" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003735" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13432" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948525" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129069" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1759" fbc:label="b1759" metaid="G_b1759">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1759">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77788" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005855" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG14009" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946277" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129713" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2251" fbc:label="b2251" metaid="G_b2251">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2251">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P52006" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007449" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13275" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946740" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130186" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0905" fbc:label="b0905" metaid="G_b0905">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0905">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P75838" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003081" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13699" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945509" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111185" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3248" fbc:label="b3248" metaid="G_b3248">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3248">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P25536" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0010653" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11298" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947753" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131136" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0386" fbc:label="b0386" metaid="G_b0386">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0386">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A9L8" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001338" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10769" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945034" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128371" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2521" fbc:label="b2521" metaid="G_b2521">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2521">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P31142" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008299" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11600" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946993" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111451" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2668" fbc:label="b2668" metaid="G_b2668">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2668">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P55734" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008786" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13288" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947135" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130582" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3425" fbc:label="b3425" metaid="G_b3425">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3425">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A6V5" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011182" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10395" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947935" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131299" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2053" fbc:label="b2053" metaid="G_b2053">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2053">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AC88" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006803" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11787" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946562" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129993" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2920" fbc:label="b2920" metaid="G_b2920">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2920">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P52043" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009583" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12973" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947402" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130821" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2143" fbc:label="b2143" metaid="G_b2143">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2143">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0ABF6" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007086" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10137" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946663" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130081" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0778" fbc:label="b0778" metaid="G_b0778">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0778">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P13000" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002650" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10120" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945387" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128746" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2065" fbc:label="b2065" metaid="G_b2065">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2065">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P28248" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006835" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11418" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946593" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130005" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2478" fbc:label="b2478" metaid="G_b2478">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2478">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A6L2" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008163" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10205" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946952" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130403" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0337" fbc:label="b0337" metaid="G_b0337">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0337">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P25524" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001161" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11326" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944996" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128322" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3729" fbc:label="b3729" metaid="G_b3729">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3729">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P17169" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012198" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10382" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948241" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131597" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2688" fbc:label="b2688" metaid="G_b2688">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2688">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A6W9" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008845" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10418" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944881" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130600" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0485" fbc:label="b0485" metaid="G_b0485">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0485">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77454" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001688" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13247" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946187" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128469" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1524" fbc:label="b1524" metaid="G_b1524">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1524">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A6W0" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005086" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13816" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944973" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129483" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2312" fbc:label="b2312" metaid="G_b2312">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2312">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AG16" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007631" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10794" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946794" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130247" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0104" fbc:label="b0104" metaid="G_b0104">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0104">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P60560" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000362" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10422" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948986" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128097" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1740" fbc:label="b1740" metaid="G_b1740">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1740">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P18843" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005803" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10663" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946946" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129694" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3366" fbc:label="b3366" metaid="G_b3366">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3366">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A9I8" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011005" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10655" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947881" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131245" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3365" fbc:label="b3365" metaid="G_b3365">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3365">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P08201" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011003" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10653" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947868" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131244" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0273" fbc:label="b0273" metaid="G_b0273">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0273">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P06960" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000939" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10067" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944844" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128258" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4254" fbc:label="b4254" metaid="G_b4254">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4254">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P04391" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013927" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10069" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948774" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16132076" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2500" fbc:label="b2500" metaid="G_b2500">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2500">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P08179" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008232" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10799" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946973" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130425" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3449" fbc:label="b3449" metaid="G_b3449">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3449">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P10908" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011264" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11050" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947955" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131321" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0331" fbc:label="b0331" metaid="G_b0331">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0331">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77541" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001138" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13601" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944990" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128316" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2210" fbc:label="b2210" metaid="G_b2210">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2210">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P33940" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007300" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12069" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946702" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130147" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1746" fbc:label="b1746" metaid="G_b1746">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1746">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P76217" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005820" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13997" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946260" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129700" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0052" fbc:label="b0052" metaid="G_b0052">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0052">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P19624" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000178" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10691" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944919" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128046" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2564" fbc:label="b2564" metaid="G_b2564">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2564">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A794" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008435" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10693" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947039" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130489" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0369" fbc:label="b0369" metaid="G_b0369">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0369">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0ACB2" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001266" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10428" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945017" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111123" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4005" fbc:label="b4005" metaid="G_b4005">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4005">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P15640" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013095" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10792" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948504" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131835" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2557" fbc:label="b2557" metaid="G_b2557">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2557">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P15254" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008412" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10797" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947032" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:49176239" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2440" fbc:label="b2440" metaid="G_b2440">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2440">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P19636" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008043" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG50007" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946925" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130365" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2441" fbc:label="b2441" metaid="G_b2441">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2441">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AEJ6" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008046" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG50006" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946924" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111437" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2049" fbc:label="b2049" metaid="G_b2049">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2049">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P24174" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006791" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10161" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946580" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129989" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3806" fbc:label="b3806" metaid="G_b3806">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3806">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P00936" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012432" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10170" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947755" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131658" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2533" fbc:label="b2533" metaid="G_b2533">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2533">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0ADG4" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008337" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10983" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947285" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130458" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0333" fbc:label="b0333" metaid="G_b0333">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0333">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P31660" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001148" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11756" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947528" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128318" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4161" fbc:label="b4161" metaid="G_b4161">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4161">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P39286" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013626" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12479" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948674" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111696" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3590" fbc:label="b3590" metaid="G_b3590">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3590">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P14081" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011729" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10942" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948103" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131461" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2918" fbc:label="b2918" metaid="G_b2918">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2918">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P27254" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009579" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11445" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947412" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130819" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2727" fbc:label="b2727" metaid="G_b2727">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2727">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AAN3" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008960" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10484" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947194" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130634" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2173" fbc:label="b2173" metaid="G_b2173">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2173">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P33030" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007194" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12104" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946701" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130111" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4352" fbc:label="b4352" metaid="G_b4352">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4352">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P24203" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0014273" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10021" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948882" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111738" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4173" fbc:label="b4173" metaid="G_b4173">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4173">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P25519" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013661" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10437" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948688" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131995" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1852" fbc:label="b1852" metaid="G_b1852">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1852">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AC53" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006171" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11221" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946370" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129805" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0134" fbc:label="b0134" metaid="G_b0134">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0134">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P31057" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000467" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11675" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944839" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128127" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2028" fbc:label="b2028" metaid="G_b2028">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2028">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P76373" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006734" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13407" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946571" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129969" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2788" fbc:label="b2788" metaid="G_b2788">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2788">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/Q46915" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009136" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13168" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947261" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130695" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2787" fbc:label="b2787" metaid="G_b2787">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2787">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AES2" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009134" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13167" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947258" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130694" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3791" fbc:label="b3791" metaid="G_b3791">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3791">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P27833" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012384" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11456" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948296" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131647" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3787" fbc:label="b3787" metaid="G_b3787">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3787">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P27829" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012374" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11452" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948977" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:49176410" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1415" fbc:label="b1415" metaid="G_b1415">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1415">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P25553" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004725" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10035" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945672" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129376" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1493" fbc:label="b1493" metaid="G_b1493">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1493">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P69910" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004976" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11490" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946058" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129452" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3517" fbc:label="b3517" metaid="G_b3517">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3517">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P69908" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011490" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG50009" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948027" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131389" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3551" fbc:label="b3551" metaid="G_b3551">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3551">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P20099" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011597" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10124" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946915" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:145698325" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2750" fbc:label="b2750" metaid="G_b2750">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2750">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A6J1" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009023" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10185" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947221" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130657" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1622" fbc:label="b1622" metaid="G_b1622">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1622">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P23256" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005432" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10564" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945937" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129580" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3939" fbc:label="b3939" metaid="G_b3939">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3939">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P00935" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012887" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10582" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948434" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131777" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2661" fbc:label="b2661" metaid="G_b2661">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2661">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P25526" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008758" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11329" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948060" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130575" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0241" fbc:label="b0241" metaid="G_b0241">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0241">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P02932" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000823" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10729" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944926" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128227" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0929" fbc:label="b0929" metaid="G_b0929">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0929">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P02931" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003153" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10671" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945554" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128896" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1377" fbc:label="b1377" metaid="G_b1377">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1377">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77747" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004608" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13375" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946313" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129338" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2215" fbc:label="b2215" metaid="G_b2215">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2215">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P06996" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007321" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10670" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946716" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130152" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0411" fbc:label="b0411" metaid="G_b0411">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0411">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A927" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001425" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11035" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946242" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128396" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0957" fbc:label="b0957" metaid="G_b0957">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0957">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A910" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003240" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10669" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945571" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128924" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1319" fbc:label="b1319" metaid="G_b1319">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1319">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P76045" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004425" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13428" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945889" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129280" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3875" fbc:label="b3875" metaid="G_b3875">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3875">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P76773" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012659" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13374" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948366" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131715" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1701" fbc:label="b1701" metaid="G_b1701">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1701">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P38135" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005676" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12357" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946213" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:145698273" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1805" fbc:label="b1805" metaid="G_b1805">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1805">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P69451" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006005" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11530" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946327" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129759" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1646" fbc:label="b1646" metaid="G_b1646">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1646">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AGD1" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005505" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13419" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945343" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129604" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2206" fbc:label="b2206" metaid="G_b2206">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2206">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P33937" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007289" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12067" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947093" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130143" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2203" fbc:label="b2203" metaid="G_b2203">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2203">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0ABL3" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007283" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12061" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946698" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111403" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2204" fbc:label="b2204" metaid="G_b2204">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2204">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P33934" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007285" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12062" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945984" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130141" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2205" fbc:label="b2205" metaid="G_b2205">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2205">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AAL3" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007287" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12064" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945544" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130142" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2202" fbc:label="b2202" metaid="G_b2202">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2202">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0ABL5" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007281" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12060" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946706" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130139" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0980" fbc:label="b0980" metaid="G_b0980">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0980">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P07102" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003305" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10049" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946206" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128946" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0383" fbc:label="b0383" metaid="G_b0383">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0383">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P00634" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001328" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10727" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945041" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:49176017" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1465" fbc:label="b1465" metaid="G_b1465">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1465">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AF32" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004889" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10644" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946029" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129424" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1226" fbc:label="b1226" metaid="G_b1226">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1226">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AF26" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004123" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10641" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945807" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129189" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1466" fbc:label="b1466" metaid="G_b1466">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1466">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P19317" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004892" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10645" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946032" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129425" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1224" fbc:label="b1224" metaid="G_b1224">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1224">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P09152" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004119" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10638" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945782" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129187" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1468" fbc:label="b1468" metaid="G_b1468">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1468">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P19319" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004898" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10648" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945999" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129427" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1227" fbc:label="b1227" metaid="G_b1227">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1227">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P11350" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004125" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10640" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945808" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129190" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1467" fbc:label="b1467" metaid="G_b1467">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1467">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P19318" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004896" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10647" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946034" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129426" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1225" fbc:label="b1225" metaid="G_b1225">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1225">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P11349" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004121" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10639" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945780" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129188" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1602" fbc:label="b1602" metaid="G_b1602">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1602">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AB67" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005352" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10745" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946144" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129560" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1603" fbc:label="b1603" metaid="G_b1603">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1603">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P07001" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005354" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10744" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946628" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129561" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0997" fbc:label="b0997" metaid="G_b0997">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0997">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P33225" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003372" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11814" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946267" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128963" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1873" fbc:label="b1873" metaid="G_b1873">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1873">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P52005" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006246" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13277" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946490" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129826" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1872" fbc:label="b1872" metaid="G_b1872">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1872">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P46923" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006244" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13276" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946389" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111350" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0996" fbc:label="b0996" metaid="G_b0996">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0996">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P33226" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003370" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11815" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946252" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128962" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2342" fbc:label="b2342" metaid="G_b2342">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2342">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P76503" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007725" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG14128" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948823" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130275" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3845" fbc:label="b3845" metaid="G_b3845">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3845">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P21151" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012562" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10278" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948324" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:49176430" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4388" fbc:label="b4388" metaid="G_b4388">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4388">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AGB0" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0014393" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10945" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948913" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16132205" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3528" fbc:label="b3528" metaid="G_b3528">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3528">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A830" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011527" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG20044" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948039" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131400" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0010" fbc:label="b0010" metaid="G_b0010">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0010">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AC98" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000032" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11512" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944792" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128004" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4138" fbc:label="b4138" metaid="G_b4138">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4138">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0ABN5" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013546" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11225" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948659" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131963" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4123" fbc:label="b4123" metaid="G_b4123">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4123">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0ABN9" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013503" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10006" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948641" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131949" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0621" fbc:label="b0621" metaid="G_b0621">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0621">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0ABP3" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002133" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13545" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945000" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128604" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2417" fbc:label="b2417" metaid="G_b2417">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2417">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P69783" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007971" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10165" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946880" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130343" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2429" fbc:label="b2429" metaid="G_b2429">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2429">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77272" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008009" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG14163" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946894" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130354" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2422" fbc:label="b2422" metaid="G_b2422">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2422">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P16676" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007986" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10183" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946889" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130348" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2425" fbc:label="b2425" metaid="G_b2425">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2425">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P16700" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007992" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10195" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946883" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130350" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0763" fbc:label="b0763" metaid="G_b0763">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0763">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P37329" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002601" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12427" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945364" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128731" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3917" fbc:label="b3917" metaid="G_b3917">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3917">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AG78" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012794" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10929" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948411" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131755" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0764" fbc:label="b0764" metaid="G_b0764">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0764">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AF01" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002603" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10002" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945361" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128732" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2423" fbc:label="b2423" metaid="G_b2423">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2423">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AEB0" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007988" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10198" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/2847743" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111430" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0765" fbc:label="b0765" metaid="G_b0765">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0765">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P09833" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002605" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10152" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945362" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128733" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2424" fbc:label="b2424" metaid="G_b2424">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2424">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P16701" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007990" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10197" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946882" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130349" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3063" fbc:label="b3063" metaid="G_b3063">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3063">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P39414" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0010056" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12393" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947576" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130959" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2913" fbc:label="b2913" metaid="G_b2913">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2913">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A9T0" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009561" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10944" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945258" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130814" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0367" fbc:label="b0367" metaid="G_b0367">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0367">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/Q47539" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001261" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13301" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945026" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128352" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0365" fbc:label="b0365" metaid="G_b0365">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0365">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/Q47537" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001256" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13300" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945030" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111122" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0366" fbc:label="b0366" metaid="G_b0366">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0366">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/Q47538" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001259" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13299" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945027" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128351" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2393" fbc:label="b2393" metaid="G_b2393">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2393">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AFF2" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007893" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11971" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946895" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130325" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2964" fbc:label="b2964" metaid="G_b2964">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2964">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AFF4" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009728" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10664" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946282" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111521" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3849" fbc:label="b3849" metaid="G_b3849">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3849">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AFZ7" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012574" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11021" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948333" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:49176432" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3747" fbc:label="b3747" metaid="G_b3747">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3747">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P63183" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012251" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11541" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948255" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:49176400" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3290" fbc:label="b3290" metaid="G_b3290">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3290">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AGI8" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0010787" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11019" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947788" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131169" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1291" fbc:label="b1291" metaid="G_b1291">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1291">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AAH4" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004342" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12304" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946203" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129252" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1363" fbc:label="b1363" metaid="G_b1363">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1363">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P23849" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004567" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11020" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945932" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129324" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1250" fbc:label="b1250" metaid="G_b1250">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1250">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P31069" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004189" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11606" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945841" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129211" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2587" fbc:label="b2587" metaid="G_b2587">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2587">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AEX3" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008515" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10522" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947069" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130512" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4031" fbc:label="b4031" metaid="G_b4031">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4031">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AGF4" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013189" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11076" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948529" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131857" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0068" fbc:label="b0068" metaid="G_b0068">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0068">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P31550" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000249" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11574" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946306" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128062" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0067" fbc:label="b0067" metaid="G_b0067">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0067">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P31549" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000246" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11573" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944784" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128061" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0066" fbc:label="b0066" metaid="G_b0066">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0066">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P31548" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000244" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11572" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944785" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128060" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2406" fbc:label="b2406" metaid="G_b2406">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2406">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P45562" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007925" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13159" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946868" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130332" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3460" fbc:label="b3460" metaid="G_b3460">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3460">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AD96" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011299" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10539" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947971" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:49176358" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3456" fbc:label="b3456" metaid="G_b3456">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3456">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P22729" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011287" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10541" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947966" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131328" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3455" fbc:label="b3455" metaid="G_b3455">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3455">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A9S7" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011284" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10537" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947967" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131327" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3454" fbc:label="b3454" metaid="G_b3454">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3454">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P22731" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011282" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10536" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947961" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111594" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3457" fbc:label="b3457" metaid="G_b3457">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3457">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AEX7" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011290" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10538" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947965" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131329" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4240" fbc:label="b4240" metaid="G_b4240">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4240">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P36672" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013872" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12127" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948761" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16132062" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3161" fbc:label="b3161" metaid="G_b3161">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3161">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AAD2" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0010387" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10617" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947675" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131053" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0112" fbc:label="b0112" metaid="G_b0112">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0112">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P15993" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000384" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10084" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946018" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128105" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3709" fbc:label="b3709" metaid="G_b3709">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3709">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P23173" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012135" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11006" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948220" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131577" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1907" fbc:label="b1907" metaid="G_b1907">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1907">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AAD4" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006355" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11041" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946412" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129857" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3566" fbc:label="b3566" metaid="G_b3566">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3566">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P37387" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011646" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG20252" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948090" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131437" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3567" fbc:label="b3567" metaid="G_b3567">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3567">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P37388" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011648" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12275" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948127" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131438" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3568" fbc:label="b3568" metaid="G_b3568">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3568">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AGI4" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011650" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12276" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948083" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131439" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3578" fbc:label="b3578" metaid="G_b3578">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3578">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P37675" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011692" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12282" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948092" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:49176375" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3579" fbc:label="b3579" metaid="G_b3579">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3579">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P37676" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011694" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12283" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948091" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131450" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3577" fbc:label="b3577" metaid="G_b3577">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3577">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P37674" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011690" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12281" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948093" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131448" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3089" fbc:label="b3089" metaid="G_b3089">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3089">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AGE4" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0010159" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12732" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947605" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130984" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2153" fbc:label="b2153" metaid="G_b2153">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2153">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A6T5" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007117" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11375" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/949040" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130091" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0935" fbc:label="b0935" metaid="G_b0935">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0935">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P80645" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003178" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13706" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945557" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128902" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0153" fbc:label="b0153" metaid="G_b0153">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0153">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P06972" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000526" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10303" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946890" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128146" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0152" fbc:label="b0152" metaid="G_b0152">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0152">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P07822" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000524" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10305" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947510" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128145" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0151" fbc:label="b0151" metaid="G_b0151">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0151">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P07821" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000522" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10304" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945250" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128144" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1711" fbc:label="b1711" metaid="G_b1711">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1711">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P06609" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005712" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10127" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945877" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129667" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1709" fbc:label="b1709" metaid="G_b1709">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1709">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P06611" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005707" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10128" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945751" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129665" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0158" fbc:label="b0158" metaid="G_b0158">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0158">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P37028" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000542" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12334" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947574" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128151" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2223" fbc:label="b2223" metaid="G_b2223">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2223">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P76460" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007353" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11671" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946721" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130160" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1101" fbc:label="b1101" metaid="G_b1101">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1101">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P69786" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003722" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10787" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945651" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129064" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0679" fbc:label="b0679" metaid="G_b0679">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0679">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P09323" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002312" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10635" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945292" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128655" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1818" fbc:label="b1818" metaid="G_b1818">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1818">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P69801" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006056" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10568" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946332" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129772" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1817" fbc:label="b1817" metaid="G_b1817">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1817">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P69797" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006054" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10567" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946334" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129771" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1819" fbc:label="b1819" metaid="G_b1819">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1819">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P69805" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006058" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10569" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946342" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:345452720" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3224" fbc:label="b3224" metaid="G_b3224">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3224">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P41036" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0010577" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG20145" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947740" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111559" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0311" fbc:label="b0311" metaid="G_b0311">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0311">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P17444" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001070" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10109" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945716" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128296" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4381" fbc:label="b4381" metaid="G_b4381">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4381">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A6L0" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0014371" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10221" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948902" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16132198" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0590" fbc:label="b0590" metaid="G_b0590">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0590">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P23876" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002031" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10296" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945214" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128573" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0588" fbc:label="b0588" metaid="G_b0588">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0588">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P23878" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002025" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10295" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945201" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128571" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0592" fbc:label="b0592" metaid="G_b0592">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0592">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AEL6" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002038" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10294" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947538" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128575" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0589" fbc:label="b0589" metaid="G_b0589">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0589">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P23877" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002027" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10298" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945209" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128572" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2841" fbc:label="b2841" metaid="G_b2841">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2841">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AE24" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009319" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10056" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947341" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130745" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2308" fbc:label="b2308" metaid="G_b2308">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2308">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P52094" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007615" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12125" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947235" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130243" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2310" fbc:label="b2310" metaid="G_b2310">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2310">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P09551" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007621" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10072" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/949030" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130245" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0862" fbc:label="b0862" metaid="G_b0862">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0862">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AE34" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002933" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11626" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/949046" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128830" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0863" fbc:label="b0863" metaid="G_b0863">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0863">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P30859" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002937" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11625" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948988" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128831" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0864" fbc:label="b0864" metaid="G_b0864">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0864">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AAF6" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002939" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11624" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945489" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128832" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0860" fbc:label="b0860" metaid="G_b0860">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0860">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P30860" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002927" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11628" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948981" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128828" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2306" fbc:label="b2306" metaid="G_b2306">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2306">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P07109" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007610" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10452" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946789" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130241" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0861" fbc:label="b0861" metaid="G_b0861">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0861">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AE30" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002931" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11627" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/949066" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128829" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2307" fbc:label="b2307" metaid="G_b2307">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2307">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AEU3" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007613" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10007" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946790" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130242" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4115" fbc:label="b4115" metaid="G_b4115">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4115">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P60061" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013473" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12462" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948628" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131941" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4193" fbc:label="b4193" metaid="G_b4193">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4193">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P39301" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013723" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12493" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948717" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111703" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4194" fbc:label="b4194" metaid="G_b4194">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4194">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P69822" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013725" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12494" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948716" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16132016" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4195" fbc:label="b4195" metaid="G_b4195">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4195">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P69820" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013727" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12495" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948715" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16132017" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1453" fbc:label="b1453" metaid="G_b1453">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1453">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77610" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004845" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13776" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946019" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111277" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0653" fbc:label="b0653" metaid="G_b0653">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0653">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AER5" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002234" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12662" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947354" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128636" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0655" fbc:label="b0655" metaid="G_b0655">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0655">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P37902" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002241" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12700" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946938" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128638" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0654" fbc:label="b0654" metaid="G_b0654">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0654">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AER3" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002239" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12661" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945443" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128637" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0652" fbc:label="b0652" metaid="G_b0652">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0652">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AAG3" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002232" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12663" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945254" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128635" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4077" fbc:label="b4077" metaid="G_b4077">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4077">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P21345" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013357" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10405" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948591" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131903" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4055" fbc:label="b4055" metaid="G_b4055">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4055">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AE22" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013283" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11934" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948562" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131881" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0480" fbc:label="b0480" metaid="G_b0480">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0480">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P07024" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001668" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11060" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947331" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128464" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2789" fbc:label="b2789" metaid="G_b2789">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2789">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/Q46916" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009139" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13169" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947265" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130696" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3127" fbc:label="b3127" metaid="G_b3127">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3127">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AA80" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0010279" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12760" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947642" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131019" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2943" fbc:label="b2943" metaid="G_b2943">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2943">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AEP1" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009654" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12148" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947434" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130844" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2663" fbc:label="b2663" metaid="G_b2663">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2663">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P25527" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008763" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11330" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948049" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130577" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1917" fbc:label="b1917" metaid="G_b1917">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1917">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P37774" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006384" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12347" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946422" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129864" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1920" fbc:label="b1920" metaid="G_b1920">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1920">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AEM9" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006392" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12680" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948833" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129867" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1918" fbc:label="b1918" metaid="G_b1918">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1918">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AFT2" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006386" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG14037" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/949105" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129865" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2703" fbc:label="b2703" metaid="G_b2703">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2703">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P56580" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008892" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG14373" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948933" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:49176261" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2702" fbc:label="b2702" metaid="G_b2702">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2702">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P56579" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008890" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10969" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947575" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:49176260" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2704" fbc:label="b2704" metaid="G_b2704">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2704">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P05706" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008894" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10970" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948971" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130611" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1197" fbc:label="b1197" metaid="G_b1197">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1197">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P13482" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004021" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11017" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945757" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129160" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4515" fbc:label="b4515" metaid="G_b4515">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4515">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P56100" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0285036" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG14329" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/1450246" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:94541102" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0733" fbc:label="b0733" metaid="G_b0733">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0733">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0ABJ9" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002499" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10173" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945341" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111166" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0978" fbc:label="b0978" metaid="G_b0978">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0978">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P26459" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003300" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11380" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945585" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128944" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0734" fbc:label="b0734" metaid="G_b0734">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0734">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0ABK2" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002501" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10174" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945347" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128709" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0979" fbc:label="b0979" metaid="G_b0979">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0979">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P26458" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003302" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11379" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947547" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128945" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3739" fbc:label="b3739" metaid="G_b3739">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3739">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0ABC0" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012224" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10106" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948251" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111645" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3731" fbc:label="b3731" metaid="G_b3731">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3731">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A6E6" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012206" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10100" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948245" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131599" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3736" fbc:label="b3736" metaid="G_b3736">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3736">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0ABA0" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012217" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10103" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948247" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131604" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3732" fbc:label="b3732" metaid="G_b3732">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3732">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0ABB4" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012208" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10101" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948244" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131600" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3738" fbc:label="b3738" metaid="G_b3738">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3738">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AB98" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012222" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10099" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948252" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131606" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3733" fbc:label="b3733" metaid="G_b3733">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3733">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0ABA6" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012211" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10104" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948243" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131601" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3737" fbc:label="b3737" metaid="G_b3737">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3737">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P68699" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012220" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10102" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948253" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131605" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3735" fbc:label="b3735" metaid="G_b3735">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3735">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0ABA4" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012215" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10105" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948254" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131603" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3734" fbc:label="b3734" metaid="G_b3734">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3734">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0ABB0" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012213" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10098" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948242" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131602" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4067" fbc:label="b4067" metaid="G_b4067">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4067">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P32705" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013328" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11942" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948575" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131893" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3654" fbc:label="b3654" metaid="G_b3654">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3654">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AGM9" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011946" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11194" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948172" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131525" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3714" fbc:label="b3714" metaid="G_b3714">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3714">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P31466" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012148" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11724" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948224" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131582" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3664" fbc:label="b3664" metaid="G_b3664">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3664">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P31440" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011975" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11691" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948174" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111631" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4088" fbc:label="b4088" metaid="G_b4088">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4088">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P39265" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013398" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12458" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948604" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131914" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4087" fbc:label="b4087" metaid="G_b4087">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4087">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P32721" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013394" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11959" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948593" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131913" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4086" fbc:label="b4086" metaid="G_b4086">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4086">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P32720" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013392" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11958" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948594" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131912" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0511" fbc:label="b0511" metaid="G_b0511">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0511">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P75712" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001764" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13618" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945138" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111144" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1900" fbc:label="b1900" metaid="G_b1900">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1900">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AAF3" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006328" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10058" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946408" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129850" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4460" fbc:label="b4460" metaid="G_b4460">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4460">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AE26" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0174093" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10059" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948923" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:145698280" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1901" fbc:label="b1901" metaid="G_b1901">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1901">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P02924" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006330" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10057" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946409" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129851" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0837" fbc:label="b0837" metaid="G_b0837">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0837">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P75804" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002852" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13480" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945467" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128805" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0124" fbc:label="b0124" metaid="G_b0124">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0124">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P15877" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000433" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10369" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944830" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128117" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4064" fbc:label="b4064" metaid="G_b4064">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4064">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AF52" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013319" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11939" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948565" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131890" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4464" fbc:label="b4464" metaid="G_b4464">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4464">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/Q46817" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0174113" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13067" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/2847748" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:49176279" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0974" fbc:label="b0974" metaid="G_b0974">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0974">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AAM1" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003290" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10470" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945581" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128940" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2997" fbc:label="b2997" metaid="G_b2997">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2997">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P69741" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009834" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13006" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945902" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130897" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0973" fbc:label="b0973" metaid="G_b0973">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0973">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0ACD8" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003288" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10469" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945580" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128939" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2995" fbc:label="b2995" metaid="G_b2995">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2995">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P37180" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009830" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11800" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948615" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130895" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2994" fbc:label="b2994" metaid="G_b2994">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2994">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0ACE0" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009828" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11801" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945182" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130894" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0972" fbc:label="b0972" metaid="G_b0972">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0972">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P69739" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003286" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10468" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945579" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128938" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2996" fbc:label="b2996" metaid="G_b2996">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2996">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AAJ8" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009832" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11799" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944842" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130896" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4287" fbc:label="b4287" metaid="G_b4287">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4287">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P15031" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0014057" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10290" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948819" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16132108" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4289" fbc:label="b4289" metaid="G_b4289">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4289">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P15030" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0014063" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10288" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948826" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16132110" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4288" fbc:label="b4288" metaid="G_b4288">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4288">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P15029" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0014059" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10289" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946816" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16132109" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4290" fbc:label="b4290" metaid="G_b4290">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4290">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P15028" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0014065" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10287" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946838" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:162135917" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1252" fbc:label="b1252" metaid="G_b1252">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1252">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P02929" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004196" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11012" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945843" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129213" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3006" fbc:label="b3006" metaid="G_b3006">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3006">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0ABU7" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009869" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10271" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945420" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130904" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3005" fbc:label="b3005" metaid="G_b3005">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3005">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0ABV2" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009866" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10272" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946345" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130903" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1102" fbc:label="b1102" metaid="G_b1102">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1102">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P16869" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003724" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10306" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945649" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129065" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2315" fbc:label="b2315" metaid="G_b2315">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2315">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P08192" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007645" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10327" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945451" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130250" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0612" fbc:label="b0612" metaid="G_b0612">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0612">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AE74" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002110" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13538" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/949070" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128595" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0040" fbc:label="b0040" metaid="G_b0040">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0040">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P31553" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000141" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11561" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944765" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128034" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2130" fbc:label="b2130" metaid="G_b2130">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2130">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P33361" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007038" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12011" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946660" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130068" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2131" fbc:label="b2131" metaid="G_b2131">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2131">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P33362" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007040" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12012" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946681" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130069" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2128" fbc:label="b2128" metaid="G_b2128">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2128">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P33359" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007032" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12009" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/949028" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130066" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2129" fbc:label="b2129" metaid="G_b2129">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2129">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P33360" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007034" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12010" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946659" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130067" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3409" fbc:label="b3409" metaid="G_b3409">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3409">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P33650" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011126" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12102" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947919" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131285" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2169" fbc:label="b2169" metaid="G_b2169">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2169">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P69811" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007180" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10005" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946677" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130107" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2167" fbc:label="b2167" metaid="G_b2167">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2167">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P20966" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007172" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10336" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946672" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130105" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2801" fbc:label="b2801" metaid="G_b2801">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2801">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P11551" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009187" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10352" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947487" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130708" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0584" fbc:label="b0584" metaid="G_b0584">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0584">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P05825" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002014" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10293" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945193" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128567" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0336" fbc:label="b0336" metaid="G_b0336">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0336">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AA82" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001159" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11327" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944994" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128321" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0341" fbc:label="b0341" metaid="G_b0341">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0341">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P17583" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001175" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10177" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946770" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128326" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3909" fbc:label="b3909" metaid="G_b3909">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3909">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A712" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012764" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11869" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948407" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111665" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4036" fbc:label="b4036" metaid="G_b4036">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4036">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P02943" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013218" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10528" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948548" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131862" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4291" fbc:label="b4291" metaid="G_b4291">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4291">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P13036" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0014067" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10286" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946427" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16132112" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1119" fbc:label="b1119" metaid="G_b1119">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1119">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P75959" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003778" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13442" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945664" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129082" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3829" fbc:label="b3829" metaid="G_b3829">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3829">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P25665" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012520" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10584" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948323" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131678" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4019" fbc:label="b4019" metaid="G_b4019">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4019">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P13009" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013140" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10587" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948522" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131845" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0886" fbc:label="b0886" metaid="G_b0886">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0886">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P23886" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003012" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10012" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945504" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128853" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0887" fbc:label="b0887" metaid="G_b0887">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0887">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P29018" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003015" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11405" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/949052" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128854" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2476" fbc:label="b2476" metaid="G_b2476">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2476">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A7D7" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008156" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10791" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946957" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130401" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0509" fbc:label="b0509" metaid="G_b0509">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0509">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77161" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001759" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13265" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945146" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128493" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3125" fbc:label="b3125" metaid="G_b3125">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3125">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0ABQ2" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0010273" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11176" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947631" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:145698315" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2501" fbc:label="b2501" metaid="G_b2501">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2501">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A7B1" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008235" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11510" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946971" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130426" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3941" fbc:label="b3941" metaid="G_b3941">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3941">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AEZ1" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012897" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10585" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948432" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131779" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2574" fbc:label="b2574" metaid="G_b2574">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2574">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P10902" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008471" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10631" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947049" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130499" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3177" fbc:label="b3177" metaid="G_b3177">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3177">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AC13" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0010441" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG50011" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947691" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111553" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0529" fbc:label="b0529" metaid="G_b0529">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0529">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P24186" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001818" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10328" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945221" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128513" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4132" fbc:label="b4132" metaid="G_b4132">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4132">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AAE8" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013530" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10132" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948654" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131958" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0750" fbc:label="b0750" metaid="G_b0750">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0750">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P11458" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002541" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10630" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945351" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128718" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0306" fbc:label="b0306" metaid="G_b0306">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0306">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77252" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001058" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13582" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948438" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128291" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0307" fbc:label="b0307" metaid="G_b0307">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0307">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77536" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001060" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13583" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944980" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128292" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3605" fbc:label="b3605" metaid="G_b3605">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3605">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P33232" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011784" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11963" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948121" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131476" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0308" fbc:label="b0308" metaid="G_b0308">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0308">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77433" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001062" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13584" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945906" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111113" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2492" fbc:label="b2492" metaid="G_b2492">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2492">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77733" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008206" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG14220" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/949032" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130417" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0904" fbc:label="b0904" metaid="G_b0904">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0904">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AC23" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003073" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11258" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945513" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128871" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3631" fbc:label="b3631" metaid="G_b3631">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3631">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P25740" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011868" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11339" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948149" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131502" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0914" fbc:label="b0914" metaid="G_b0914">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0914">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P60752" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003113" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10613" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945530" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128881" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1300" fbc:label="b1300" metaid="G_b1300">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1300">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P23883" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004376" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10036" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947003" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129261" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1967" fbc:label="b1967" metaid="G_b1967">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1967">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P31658" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006529" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11755" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946481" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129913" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0933" fbc:label="b0933" metaid="G_b0933">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0933">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AAI1" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003173" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12358" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947220" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128900" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0934" fbc:label="b0934" metaid="G_b0934">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0934">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P75851" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003175" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13705" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947216" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111188" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0936" fbc:label="b0936" metaid="G_b0936">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0936">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P75853" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003180" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13707" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945560" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111189" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2032" fbc:label="b2032" metaid="G_b2032">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2032">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P37751" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006747" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11985" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946555" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129972" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2027" fbc:label="b2027" metaid="G_b2027">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2027">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P76372" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006731" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13406" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946553" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111375" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2035" fbc:label="b2035" metaid="G_b2035">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2035">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P37748" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006753" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11982" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945179" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129975" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3622" fbc:label="b3622" metaid="G_b3622">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3622">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P27243" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011849" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11424" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948148" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131493" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0459" fbc:label="b0459" metaid="G_b0459">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0459">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77791" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001591" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG14239" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945096" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128443" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0585" fbc:label="b0585" metaid="G_b0585">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0585">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P13039" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002019" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10299" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945181" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:635341462" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1326" fbc:label="b1326" metaid="G_b1326">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1326">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0ACV6" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004450" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13906" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945969" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:226524711" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1325" fbc:label="b1325" metaid="G_b1325">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1325">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P51981" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004448" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13228" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946013" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111249" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0591" fbc:label="b0591" metaid="G_b0591">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0591">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P24077" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002036" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11104" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946268" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128574" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3035" fbc:label="b3035" metaid="G_b3035">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3035">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P02930" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009965" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11009" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947521" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111528" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0692" fbc:label="b0692" metaid="G_b0692">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0692">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AAF1" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002360" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10753" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945422" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128668" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2014" fbc:label="b2014" metaid="G_b2014">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2014">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AA47" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006696" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11896" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946533" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111370" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1296" fbc:label="b1296" metaid="G_b1296">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1296">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P76037" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004362" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13907" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946287" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111243" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1298" fbc:label="b1298" metaid="G_b1298">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1298">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P76038" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004369" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13909" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945882" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111245" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3374" fbc:label="b3374" metaid="G_b3374">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3374">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P45543" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011029" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12912" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947886" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131252" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1308" fbc:label="b1308" metaid="G_b1308">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1308">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P23857" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004397" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10780" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945652" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129269" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2197" fbc:label="b2197" metaid="G_b2197">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2197">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P69490" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007271" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12055" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946697" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130134" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2198" fbc:label="b2198" metaid="G_b2198">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2198">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0ABM5" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007273" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12169" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946709" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130135" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2201" fbc:label="b2201" metaid="G_b2201">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2201">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P33931" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007279" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12059" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946714" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111402" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2200" fbc:label="b2200" metaid="G_b2200">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2200">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0ABL8" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007277" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12058" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946692" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130137" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2199" fbc:label="b2199" metaid="G_b2199">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2199">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0ABM1" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007275" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12057" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946703" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130136" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0622" fbc:label="b0622" metaid="G_b0622">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0622">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P37001" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002139" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12180" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946360" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128605" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3785" fbc:label="b3785" metaid="G_b3785">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3785">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AG00" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012370" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11295" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944815" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111649" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3793" fbc:label="b3793" metaid="G_b3793">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3793">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P27835" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012392" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11457" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948293" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131649" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2552" fbc:label="b2552" metaid="G_b2552">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2552">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P24232" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008396" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10456" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947018" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130477" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0756" fbc:label="b0756" metaid="G_b0756">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0756">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A9C3" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002566" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11698" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944943" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128724" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0484" fbc:label="b0484" metaid="G_b0484">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0484">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/Q59385" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001681" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13246" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946106" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128468" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3469" fbc:label="b3469" metaid="G_b3469">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3469">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P37617" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011332" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12215" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947972" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131341" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3626" fbc:label="b3626" metaid="G_b3626">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3626">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P27129" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011858" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11353" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948142" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131497" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3623" fbc:label="b3623" metaid="G_b3623">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3623">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P27242" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011851" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11423" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948147" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131494" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2257" fbc:label="b2257" metaid="G_b2257">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2257">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P76473" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007464" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG14093" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947297" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130192" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2711" fbc:label="b2711" metaid="G_b2711">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2711">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P37596" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008912" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12450" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947088" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130618" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2710" fbc:label="b2710" metaid="G_b2710">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2710">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/Q46877" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008910" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12963" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948979" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130617" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4111" fbc:label="b4111" metaid="G_b4111">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4111">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0C0L7" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013462" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11612" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948626" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131937" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1386" fbc:label="b1386" metaid="G_b1386">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1386">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P46883" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004639" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13140" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945939" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:162135920" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4071" fbc:label="b4071" metaid="G_b4071">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4071">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0ABL1" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013344" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11945" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948573" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111682" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4073" fbc:label="b4073" metaid="G_b4073">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4073">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P32709" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013348" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11947" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948580" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131899" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4072" fbc:label="b4072" metaid="G_b4072">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4072">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AAK7" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013346" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11946" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948581" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131898" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4070" fbc:label="b4070" metaid="G_b4070">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4070">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0ABK9" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013342" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11781" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948571" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131896" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3679" fbc:label="b3679" metaid="G_b3679">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3679">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P31448" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012026" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11706" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948185" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131549" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0110" fbc:label="b0110" metaid="G_b0110">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0110">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P13016" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000380" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10041" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948877" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128103" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1463" fbc:label="b1463" metaid="G_b1463">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1463">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77567" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004882" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13780" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947251" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129422" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4219" fbc:label="b4219" metaid="G_b4219">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4219">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A744" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013804" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11433" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948734" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16132041" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1832" fbc:label="b1832" metaid="G_b1832">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1832">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P76270" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006095" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG14020" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946086" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:171701682" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1778" fbc:label="b1778" metaid="G_b1778">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1778">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A746" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005916" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12394" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947188" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129732" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2871" fbc:label="b2871" metaid="G_b2871">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2871">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P66899" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009428" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13054" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947012" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130773" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0932" fbc:label="b0932" metaid="G_b0932">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0932">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P04825" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003171" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10696" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947253" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128899" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2523" fbc:label="b2523" metaid="G_b2523">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2523">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P37095" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008305" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12310" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948766" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111453" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4260" fbc:label="b4260" metaid="G_b4260">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4260">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P68767" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013953" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10694" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948791" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16132082" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0237" fbc:label="b0237" metaid="G_b0237">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0237">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P15288" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000809" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10695" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945013" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128223" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2132" fbc:label="b2132" metaid="G_b2132">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2132">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P33363" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007043" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12013" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946682" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130070" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2239" fbc:label="b2239" metaid="G_b2239">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2239">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P09394" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007399" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10399" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946725" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130174" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4169" fbc:label="b4169" metaid="G_b4169">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4169">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P26365" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013653" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11363" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948683" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131991" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2435" fbc:label="b2435" metaid="G_b2435">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2435">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P36548" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008032" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11823" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946916" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130360" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2817" fbc:label="b2817" metaid="G_b2817">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2817">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P63883" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009238" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13086" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947293" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111492" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0867" fbc:label="b0867" metaid="G_b0867">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0867">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P75820" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002947" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13687" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945494" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128835" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1654" fbc:label="b1654" metaid="G_b1654">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1654">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AC69" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005527" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12181" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946169" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129612" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3610" fbc:label="b3610" metaid="G_b3610">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3610">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AC62" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011801" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12294" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948132" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131481" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2675" fbc:label="b2675" metaid="G_b2675">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2675">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P39452" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008806" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG20257" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947155" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130589" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2676" fbc:label="b2676" metaid="G_b2676">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2676">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P37146" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008808" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12381" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947149" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130590" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0849" fbc:label="b0849" metaid="G_b0849">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0849">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P68688" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002893" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10417" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945479" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128817" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1064" fbc:label="b1064" metaid="G_b1064">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1064">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AC59" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003615" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12688" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946926" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129027" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3336" fbc:label="b3336" metaid="G_b3336">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3336">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0ABD3" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0010903" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10113" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947839" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131215" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0123" fbc:label="b0123" metaid="G_b0123">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0123">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P36649" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000430" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12318" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947736" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128116" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1192" fbc:label="b1192" metaid="G_b1192">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1192">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P76008" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004002" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13898" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945756" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129155" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1270" fbc:label="b1270" metaid="G_b1270">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1270">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A9H5" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004261" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10130" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945839" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129231" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2180" fbc:label="b2180" metaid="G_b2180">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2180">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P33916" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007212" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12041" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946689" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130118" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2179" fbc:label="b2179" metaid="G_b2179">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2179">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P33915" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007210" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12040" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946683" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130117" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1246" fbc:label="b1246" metaid="G_b1246">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1246">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P76027" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004178" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10677" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945802" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:49176090" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1243" fbc:label="b1243" metaid="G_b1243">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1243">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P23843" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004172" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10674" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945830" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129204" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1244" fbc:label="b1244" metaid="G_b1244">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1244">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AFH2" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004174" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10675" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945823" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129205" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1247" fbc:label="b1247" metaid="G_b1247">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1247">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77737" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004182" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10678" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945818" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129208" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2177" fbc:label="b2177" metaid="G_b2177">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2177">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P33913" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007206" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12037" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946675" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111401" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2178" fbc:label="b2178" metaid="G_b2178">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2178">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AFU0" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007208" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12038" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946679" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130116" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1329" fbc:label="b1329" metaid="G_b1329">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1329">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77348" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004460" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13376" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945951" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111250" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1245" fbc:label="b1245" metaid="G_b1245">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1245">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AFH6" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004176" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10676" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945810" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129206" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0433" fbc:label="b0433" metaid="G_b0433">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0433">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AE16" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001501" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12183" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946438" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128418" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4367" fbc:label="b4367" metaid="G_b4367">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4367">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P39405" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0014326" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12595" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948891" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16132188" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0574" fbc:label="b0574" metaid="G_b0574">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0574">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77239" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001969" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG14235" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945189" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128557" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0573" fbc:label="b0573" metaid="G_b0573">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0573">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77214" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001967" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG14234" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945188" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128556" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0575" fbc:label="b0575" metaid="G_b0575">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0575">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P38054" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001971" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12367" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945191" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128558" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0572" fbc:label="b0572" metaid="G_b0572">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0572">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77211" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001958" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG14233" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946288" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128555" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3915" fbc:label="b3915" metaid="G_b3915">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3915">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P69380" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012786" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11873" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948413" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131753" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0752" fbc:label="b0752" metaid="G_b0752">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0752">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P75757" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002549" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13662" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945348" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128720" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1858" fbc:label="b1858" metaid="G_b1858">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1858">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A9X1" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006198" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13132" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946374" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129811" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1859" fbc:label="b1859" metaid="G_b1859">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1859">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P39832" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006201" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12368" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946372" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129812" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1857" fbc:label="b1857" metaid="G_b1857">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1857">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P39172" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006191" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12678" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946375" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111346" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1981" fbc:label="b1981" metaid="G_b1981">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1981">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P76350" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006572" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG20205" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946495" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129925" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2392" fbc:label="b2392" metaid="G_b2392">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2392">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A769" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007889" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG14157" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946899" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130324" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0452" fbc:label="b0452" metaid="G_b0452">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0452">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AGG2" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001566" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10995" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945074" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128437" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1927" fbc:label="b1927" metaid="G_b1927">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1927">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P26612" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006414" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11387" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946434" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129874" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3571" fbc:label="b3571" metaid="G_b3571">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3571">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P25718" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011668" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11316" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948088" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131442" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3650" fbc:label="b3650" metaid="G_b3650">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3650">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AG24" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011935" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10966" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948159" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131521" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2344" fbc:label="b2344" metaid="G_b2344">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2344">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P10384" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007740" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10280" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946820" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:145698292" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4213" fbc:label="b4213" metaid="G_b4213">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4213">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P08331" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013782" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10160" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948729" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16132035" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1059" fbc:label="b1059" metaid="G_b1059">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1059">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P40874" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003590" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12669" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944983" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129022" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1727" fbc:label="b1727" metaid="G_b1727">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1727">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77247" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005761" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13988" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945632" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129681" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3580" fbc:label="b3580" metaid="G_b3580">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3580">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P37677" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011696" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12284" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948101" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131451" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2051" fbc:label="b2051" metaid="G_b2051">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2051">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P32056" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006796" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11789" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946559" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111376" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4265" fbc:label="b4265" metaid="G_b4265">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4265">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P39344" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013969" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12539" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948798" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16132087" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3266" fbc:label="b3266" metaid="G_b3266">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3266">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P24181" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0010724" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10267" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947768" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131154" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3265" fbc:label="b3265" metaid="G_b3265">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3265">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P24180" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0010722" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10266" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947706" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131153" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3907" fbc:label="b3907" metaid="G_b3907">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3907">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P27125" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012749" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11313" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948398" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131747" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4242" fbc:label="b4242" metaid="G_b4242">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4242">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0ABB8" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013883" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12525" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948778" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16132064" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3479" fbc:label="b3479" metaid="G_b3479">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3479">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P33593" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011360" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12078" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947989" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131351" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3477" fbc:label="b3477" metaid="G_b3477">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3477">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P33591" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011356" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12076" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947986" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131349" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3476" fbc:label="b3476" metaid="G_b3476">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3476">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P33590" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011354" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12075" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947981" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131348" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3480" fbc:label="b3480" metaid="G_b3480">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3480">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P33594" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011362" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12079" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947987" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131352" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3478" fbc:label="b3478" metaid="G_b3478">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3478">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AFA9" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011358" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12077" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947990" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131350" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4094" fbc:label="b4094" metaid="G_b4094">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4094">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P16690" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013417" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10723" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948608" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131920" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4513" fbc:label="b4513" metaid="G_b4513">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4513">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P36937" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0285034" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12126" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948946" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:94541101" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0696" fbc:label="b0696" metaid="G_b0696">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0696">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P03961" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002374" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10515" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947508" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128672" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0698" fbc:label="b0698" metaid="G_b0698">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0698">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P03959" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002381" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10513" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946045" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128674" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0697" fbc:label="b0697" metaid="G_b0697">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0697">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P03960" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002376" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10514" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947450" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128673" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3458" fbc:label="b3458" metaid="G_b3458">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3458">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P04816" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011292" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10540" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947964" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131330" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2975" fbc:label="b2975" metaid="G_b2975">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2975">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/Q46839" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009763" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12995" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947259" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130875" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3603" fbc:label="b3603" metaid="G_b3603">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3603">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P33231" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011777" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11961" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948114" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131474" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4034" fbc:label="b4034" metaid="G_b4034">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4034">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AEX9" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013200" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10554" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948538" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131860" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4035" fbc:label="b4035" metaid="G_b4035">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4035">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P68187" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013216" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10558" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948537" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131861" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4032" fbc:label="b4032" metaid="G_b4032">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4032">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P68183" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013193" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10556" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948530" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131858" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4033" fbc:label="b4033" metaid="G_b4033">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4033">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P02916" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013195" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10555" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948532" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131859" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3666" fbc:label="b3666" metaid="G_b3666">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3666">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AGC0" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011981" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11054" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948201" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131536" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0731" fbc:label="b0731" metaid="G_b0731">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0731">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P54745" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002493" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13235" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945355" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128706" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0343" fbc:label="b0343" metaid="G_b0343">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0343">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P02920" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001181" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10526" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/949083" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128328" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4120" fbc:label="b4120" metaid="G_b4120">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4120">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P02921" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013495" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10578" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948635" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:345452725" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0197" fbc:label="b0197" metaid="G_b0197">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0197">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P28635" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000666" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11504" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944893" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128190" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0199" fbc:label="b0199" metaid="G_b0199">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0199">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P30750" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000671" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11621" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944896" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128192" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0198" fbc:label="b0198" metaid="G_b0198">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0198">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P31547" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000668" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11737" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944894" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128191" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1297" fbc:label="b1297" metaid="G_b1297">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1297">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P78061" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004365" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13908" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946202" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111244" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2933" fbc:label="b2933" metaid="G_b2933">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2933">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P69826" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009621" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11792" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945256" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130834" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3599" fbc:label="b3599" metaid="G_b3599">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3599">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P00550" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011761" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10615" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948118" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131470" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2934" fbc:label="b2934" metaid="G_b2934">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2934">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P69824" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009623" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11791" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945125" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130835" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1186" fbc:label="b1186" metaid="G_b1186">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1186">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AFA7" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003984" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11392" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944822" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129149" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0019" fbc:label="b0019" metaid="G_b0019">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0019">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P13738" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000068" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10652" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944758" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128013" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0451" fbc:label="b0451" metaid="G_b0451">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0451">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P69681" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001564" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11821" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945084" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128436" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0751" fbc:label="b0751" metaid="G_b0751">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0751">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AFK2" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002547" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11700" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945350" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128719" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1223" fbc:label="b1223" metaid="G_b1223">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1223">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P10903" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004111" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10642" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945783" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129186" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3367" fbc:label="b3367" metaid="G_b3367">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3367">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AC26" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011008" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10654" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/2847757" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111575" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1469" fbc:label="b1469" metaid="G_b1469">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1469">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P37758" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004901" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12153" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945799" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129428" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3726" fbc:label="b3726" metaid="G_b3726">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3726">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P07654" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012184" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10782" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948239" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131594" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3728" fbc:label="b3728" metaid="G_b3728">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3728">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AG82" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012190" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10734" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948237" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131596" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3727" fbc:label="b3727" metaid="G_b3727">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3727">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AGH8" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012186" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10784" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948238" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131595" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3725" fbc:label="b3725" metaid="G_b3725">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3725">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AAH0" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012179" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10783" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948240" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131593" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3258" fbc:label="b3258" metaid="G_b3258">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3258">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P16256" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0010695" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10685" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947752" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111565" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3371" fbc:label="b3371" metaid="G_b3371">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3371">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AC00" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011021" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12909" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947875" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:162135909" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2679" fbc:label="b2679" metaid="G_b2679">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2679">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AFM2" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008818" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10773" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947165" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130593" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2677" fbc:label="b2677" metaid="G_b2677">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2677">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P14175" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008814" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10771" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947148" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130591" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2678" fbc:label="b2678" metaid="G_b2678">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2678">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P14176" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008816" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10772" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947145" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130592" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0402" fbc:label="b0402" metaid="G_b0402">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0402">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AAE2" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001398" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13609" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945050" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128387" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1015" fbc:label="b1015" metaid="G_b1015">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1015">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P07117" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003433" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10802" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945602" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128981" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0855" fbc:label="b0855" metaid="G_b0855">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0855">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P31134" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002915" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11630" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945476" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111177" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1123" fbc:label="b1123" metaid="G_b1123">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1123">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AFK9" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003789" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10752" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945682" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129086" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0856" fbc:label="b0856" metaid="G_b0856">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0856">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P31135" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002917" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11631" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945475" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128824" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1126" fbc:label="b1126" metaid="G_b1126">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1126">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P69874" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003796" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10749" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946323" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129089" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0854" fbc:label="b0854" metaid="G_b0854">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0854">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P31133" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002913" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11629" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945480" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128822" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1441" fbc:label="b1441" metaid="G_b1441">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1441">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77795" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004805" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13763" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946007" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129400" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0857" fbc:label="b0857" metaid="G_b0857">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0857">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AFL1" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002919" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11632" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945485" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128825" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1443" fbc:label="b1443" metaid="G_b1443">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1443">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AFR9" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004809" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13765" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945903" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129402" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1124" fbc:label="b1124" metaid="G_b1124">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1124">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AFK6" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003791" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10751" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945691" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129087" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1125" fbc:label="b1125" metaid="G_b1125">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1125">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AFK4" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003794" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10750" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945692" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:162135921" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1440" fbc:label="b1440" metaid="G_b1440">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1440">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P76108" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004803" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13762" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946005" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129399" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1442" fbc:label="b1442" metaid="G_b1442">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1442">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77156" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004807" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13764" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945976" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129401" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2957" fbc:label="b2957" metaid="G_b2957">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2957">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P00805" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009700" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10046" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947454" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130858" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0150" fbc:label="b0150" metaid="G_b0150">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0150">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P06971" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000520" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10302" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944856" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128143" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1865" fbc:label="b1865" metaid="G_b1865">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1865">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AFC0" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006223" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11138" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946383" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129818" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2954" fbc:label="b2954" metaid="G_b2954">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2954">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P52061" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009692" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12982" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947429" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130855" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1002" fbc:label="b1002" metaid="G_b1002">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1002">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P19926" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003388" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10033" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945773" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128968" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2938" fbc:label="b2938" metaid="G_b2938">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2938">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P21170" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009634" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10959" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947432" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130839" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4090" fbc:label="b4090" metaid="G_b4090">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4090">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P37351" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013405" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11827" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948602" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131916" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4084" fbc:label="b4084" metaid="G_b4084">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4084">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P32718" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013380" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11956" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948596" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131910" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4085" fbc:label="b4085" metaid="G_b4085">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4085">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P32719" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013382" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11957" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948595" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131911" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3748" fbc:label="b3748" metaid="G_b3748">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3748">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P04982" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012256" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10817" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948267" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111647" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3751" fbc:label="b3751" metaid="G_b3751">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3751">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P02925" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012264" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10815" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948261" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131619" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3750" fbc:label="b3750" metaid="G_b3750">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3750">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AGI1" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012261" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10816" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948262" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131618" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4230" fbc:label="b4230" metaid="G_b4230">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4230">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P39328" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013838" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12520" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948743" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:145698343" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4227" fbc:label="b4227" metaid="G_b4227">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4227">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P39325" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013829" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12517" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948746" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16132049" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4231" fbc:label="b4231" metaid="G_b4231">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4231">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P37772" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013840" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12439" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948754" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111710" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3749" fbc:label="b3749" metaid="G_b3749">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3749">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P04983" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012259" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10814" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948264" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131617" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4485" fbc:label="b4485" metaid="G_b4485">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4485">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/Q6BEX0" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0174118" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12518" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/2847725" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:49176475" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0260" fbc:label="b0260" metaid="G_b0260">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0260">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/Q47689" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000893" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13342" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946284" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111105" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0810" fbc:label="b0810" metaid="G_b0810">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0810">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AEQ6" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002766" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10388" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945621" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128778" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0809" fbc:label="b0809" metaid="G_b0809">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0809">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P10346" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002764" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10389" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945435" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128777" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0811" fbc:label="b0811" metaid="G_b0811">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0811">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AEQ3" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002771" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10386" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944872" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128779" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1492" fbc:label="b1492" metaid="G_b1492">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1492">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P63235" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004973" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12456" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946057" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129451" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3653" fbc:label="b3653" metaid="G_b3653">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3653">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AER8" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011941" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10406" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948166" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131524" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3927" fbc:label="b3927" metaid="G_b3927">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3927">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AER0" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012828" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10396" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948422" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131765" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3959" fbc:label="b3959" metaid="G_b3959">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3959">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A6C8" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012967" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10064" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948464" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:145698337" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2170" fbc:label="b2170" metaid="G_b2170">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2170">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P33026" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007184" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12034" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946673" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130108" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0070" fbc:label="b0070" metaid="G_b0070">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0070">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P31675" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000257" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11754" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944793" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:49175994" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1528" fbc:label="b1528" metaid="G_b1528">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1528">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P31122" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005103" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11636" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947218" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129487" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2303" fbc:label="b2303" metaid="G_b2303">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2303">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AC19" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007603" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG14263" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946781" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130238" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3028" fbc:label="b3028" metaid="G_b3028">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3028">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AEY5" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009946" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12656" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947512" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130924" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3432" fbc:label="b3432" metaid="G_b3432">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3432">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P07762" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011209" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10378" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947940" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131306" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3503" fbc:label="b3503" metaid="G_b3503">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3503">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AB96" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011439" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12237" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948018" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131375" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4321" fbc:label="b4321" metaid="G_b4321">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4321">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AC94" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0014161" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12563" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948848" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16132142" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3792" fbc:label="b3792" metaid="G_b3792">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3792">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AAA7" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012386" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11486" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948294" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131648" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2033" fbc:label="b2033" metaid="G_b2033">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2033">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P37750" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006749" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11984" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946556" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129973" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2034" fbc:label="b2034" metaid="G_b2034">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2034">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P37749" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006751" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11983" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947041" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129974" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2037" fbc:label="b2037" metaid="G_b2037">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2037">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P37746" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006757" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11980" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946557" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129977" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2175" fbc:label="b2175" metaid="G_b2175">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2175">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AFV4" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007200" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG14076" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946686" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130113" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0356" fbc:label="b0356" metaid="G_b0356">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0356">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P25437" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001221" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG50010" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944988" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128341" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2240" fbc:label="b2240" metaid="G_b2240">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2240">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P08194" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007401" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10401" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946704" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130175" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0875" fbc:label="b0875" metaid="G_b0875">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0875">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P60844" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002976" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13270" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945497" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128843" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0353" fbc:label="b0353" metaid="G_b0353">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0353">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77589" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001213" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13293" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944997" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111117" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2309" fbc:label="b2309" metaid="G_b2309">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2309">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AEU0" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007617" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12124" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945309" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130244" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0325" fbc:label="b0325" metaid="G_b0325">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0325">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P75691" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001113" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13595" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944975" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128310" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2092" fbc:label="b2092" metaid="G_b2092">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2092">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P69831" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006928" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12416" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946603" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2093" fbc:label="b2093" metaid="G_b2093">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2093">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P37188" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006930" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12415" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946610" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130031" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2094" fbc:label="b2094" metaid="G_b2094">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2094">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P69828" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006932" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12414" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946633" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130032" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3093" fbc:label="b3093" metaid="G_b3093">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3093">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AA78" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0010171" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12738" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947601" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:674842734" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3415" fbc:label="b3415" metaid="G_b3415">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3415">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P39835" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011148" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12380" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947924" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:49176350" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4476" fbc:label="b4476" metaid="G_b4476">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4476">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AC96" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0174105" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12631" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/2847760" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:49176355" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1621" fbc:label="b1621" metaid="G_b1621">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1621">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P19642" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005429" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10563" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946009" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129579" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2021" fbc:label="b2021" metaid="G_b2021">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2021">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P06986" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006717" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10446" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946551" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129962" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0166" fbc:label="b0166" metaid="G_b0166">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0166">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A9D8" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000565" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10207" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944862" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128159" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1519" fbc:label="b1519" metaid="G_b1519">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1519">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P76145" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005070" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13812" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946074" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129478" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3437" fbc:label="b3437" metaid="G_b3437">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3437">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P46859" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011224" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12629" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947937" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111591" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4268" fbc:label="b4268" metaid="G_b4268">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4268">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P39208" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013980" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12152" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946066" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16132090" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3805" fbc:label="b3805" metaid="G_b3805">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3805">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P06983" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012427" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10429" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947759" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:49176416" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3904" fbc:label="b3904" metaid="G_b3904">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3904">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P32171" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012738" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11868" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948399" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131744" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2482" fbc:label="b2482" metaid="G_b2482">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2482">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P23482" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008181" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11282" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946961" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130407" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2484" fbc:label="b2484" metaid="G_b2484">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2484">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77416" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008185" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG14212" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947290" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130409" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2488" fbc:label="b2488" metaid="G_b2488">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2488">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77423" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008196" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG14216" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946965" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130413" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2723" fbc:label="b2723" metaid="G_b2723">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2723">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P16429" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008948" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10476" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945327" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130630" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2485" fbc:label="b2485" metaid="G_b2485">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2485">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AEW1" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008188" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG14213" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945298" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130410" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2483" fbc:label="b2483" metaid="G_b2483">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2483">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77858" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008183" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG14211" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947492" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111445" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2724" fbc:label="b2724" metaid="G_b2724">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2724">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AAK1" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008950" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10475" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948002" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130631" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2721" fbc:label="b2721" metaid="G_b2721">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2721">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P16431" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008944" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10478" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947396" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130628" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2490" fbc:label="b2490" metaid="G_b2490">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2490">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77453" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008200" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG14218" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947713" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111446" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2719" fbc:label="b2719" metaid="G_b2719">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2719">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P16433" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008936" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10480" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947191" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130626" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4079" fbc:label="b4079" metaid="G_b4079">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4079">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P07658" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013363" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10285" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948584" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131905" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2481" fbc:label="b2481" metaid="G_b2481">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2481">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P23481" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008179" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11150" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946959" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111444" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2486" fbc:label="b2486" metaid="G_b2486">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2486">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77437" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008191" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG14214" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946962" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130411" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2722" fbc:label="b2722" metaid="G_b2722">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2722">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P16430" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008946" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10477" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948994" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130629" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2720" fbc:label="b2720" metaid="G_b2720">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2720">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P16432" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008942" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10479" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947048" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130627" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2487" fbc:label="b2487" metaid="G_b2487">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2487">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77329" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008194" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG14215" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946964" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130412" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2489" fbc:label="b2489" metaid="G_b2489">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2489">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77668" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008198" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG14217" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946966" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130414" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2747" fbc:label="b2747" metaid="G_b2747">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2747">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/Q46893" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009017" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13110" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948269" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130654" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3213" fbc:label="b3213" metaid="G_b3213">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3213">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P09832" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0010547" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10404" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947723" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131103" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1761" fbc:label="b1761" metaid="G_b1761">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1761">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P00370" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005865" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10372" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946802" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129715" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3212" fbc:label="b3212" metaid="G_b3212">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3212">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P09831" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0010545" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10403" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947724" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:308209621" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0186" fbc:label="b0186" metaid="G_b0186">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0186">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P52095" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000633" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13219" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944887" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128179" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4131" fbc:label="b4131" metaid="G_b4131">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4131">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A9H3" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013526" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10131" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948643" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131957" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1189" fbc:label="b1189" metaid="G_b1189">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1189">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A6J5" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003995" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11407" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945752" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129152" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2888" fbc:label="b2888" metaid="G_b2888">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2888">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/Q46821" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009478" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13071" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/949017" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111510" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2882" fbc:label="b2882" metaid="G_b2882">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2882">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P67444" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009463" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13065" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/949075" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111507" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3453" fbc:label="b3453" metaid="G_b3453">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3453">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AG80" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011274" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11047" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947962" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131325" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3450" fbc:label="b3450" metaid="G_b3450">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3450">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P10907" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011266" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11048" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947953" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111593" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3451" fbc:label="b3451" metaid="G_b3451">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3451">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P10906" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011270" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11049" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947959" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131323" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3452" fbc:label="b3452" metaid="G_b3452">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3452">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P10905" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011272" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11046" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947957" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131324" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2536" fbc:label="b2536" metaid="G_b2536">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2536">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/Q47142" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008348" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13454" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947007" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130461" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0212" fbc:label="b0212" metaid="G_b0212">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0212">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AC84" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000707" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13330" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944902" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128199" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3779" fbc:label="b3779" metaid="G_b3779">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3779">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P25552" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012347" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10413" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948291" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:49176408" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2868" fbc:label="b2868" metaid="G_b2868">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2868">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/Q46801" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009418" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13051" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945148" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130770" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2867" fbc:label="b2867" metaid="G_b2867">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2867">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/Q46800" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009416" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13050" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947205" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130769" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2866" fbc:label="b2866" metaid="G_b2866">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2866">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/Q46799" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009413" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13049" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947116" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130768" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4311" fbc:label="b4311" metaid="G_b4311">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4311">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P69856" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0014136" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12389" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946843" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111728" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1991" fbc:label="b1991" metaid="G_b1991">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1991">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P36562" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006611" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12151" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946517" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129932" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3502" fbc:label="b3502" metaid="G_b3502">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3502">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AB93" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011437" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12236" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948011" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111602" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1444" fbc:label="b1444" metaid="G_b1444">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1444">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77674" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004813" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13766" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945876" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129403" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2927" fbc:label="b2927" metaid="G_b2927">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2927">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A9B6" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009607" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10368" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947413" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130828" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2023" fbc:label="b2023" metaid="G_b2023">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2023">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P60595" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006722" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10450" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946544" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129964" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2025" fbc:label="b2025" metaid="G_b2025">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2025">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P60664" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006727" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10448" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946516" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129966" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3640" fbc:label="b3640" metaid="G_b3640">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3640">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P06968" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011899" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10251" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948607" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131511" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0425" fbc:label="b0425" metaid="G_b0425">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0425">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A9J4" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001474" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13271" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945065" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128410" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3772" fbc:label="b3772" metaid="G_b3772">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3772">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P04968" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012321" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10493" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948287" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131630" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0931" fbc:label="b0931" metaid="G_b0931">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0931">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P18133" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003167" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10742" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946648" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128898" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1764" fbc:label="b1764" metaid="G_b1764">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1764">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P16456" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005872" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10943" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946768" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129718" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2150" fbc:label="b2150" metaid="G_b2150">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2150">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AEE5" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007108" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10593" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/949041" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130088" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2149" fbc:label="b2149" metaid="G_b2149">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2149">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AAG8" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007103" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10592" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/949036" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130087" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2148" fbc:label="b2148" metaid="G_b2148">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2148">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P23200" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007101" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10594" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/949039" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130086" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1640" fbc:label="b1640" metaid="G_b1640">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1640">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77570" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005488" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13942" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946810" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129598" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0048" fbc:label="b0048" metaid="G_b0048">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0048">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0ABQ4" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000164" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10326" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944790" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128042" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1606" fbc:label="b1606" metaid="G_b1606">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1606">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AFS3" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005364" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13189" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/949096" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129564" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3390" fbc:label="b3390" metaid="G_b3390">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3390">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A6D7" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011069" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10081" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/2847759" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111581" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0388" fbc:label="b0388" metaid="G_b0388">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0388">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A6E1" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001353" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10082" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945031" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128373" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1745" fbc:label="b1745" metaid="G_b1745">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1745">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P76216" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005817" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13996" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946259" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129699" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0114" fbc:label="b0114" metaid="G_b0114">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0114">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AFG8" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000397" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10024" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944834" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128107" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0115" fbc:label="b0115" metaid="G_b0115">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0115">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P06959" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000400" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10025" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944794" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128108" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3128" fbc:label="b3128" metaid="G_b3128">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3128">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P39829" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0010284" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12522" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947641" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131020" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2255" fbc:label="b2255" metaid="G_b2255">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2255">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77398" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007460" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG14091" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947683" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130190" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0774" fbc:label="b0774" metaid="G_b0774">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0774">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P12995" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002635" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10117" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945376" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128742" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1605" fbc:label="b1605" metaid="G_b1605">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1605">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AAE5" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005362" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13930" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945159" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129563" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2818" fbc:label="b2818" metaid="G_b2818">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2818">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A6C5" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009245" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10063" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947289" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130722" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1489" fbc:label="b1489" metaid="G_b1489">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1489">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P76129" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004963" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13792" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945815" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:162135902" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3032" fbc:label="b3032" metaid="G_b3032">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3032">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AEW4" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009957" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12187" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947515" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130928" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0334" fbc:label="b0334" metaid="G_b0334">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0334">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77243" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001152" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13603" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945931" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128319" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0092" fbc:label="b0092" metaid="G_b0092">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0092">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P07862" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000326" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10214" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946324" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128085" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0381" fbc:label="b0381" metaid="G_b0381">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0381">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A6J8" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001309" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10213" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945313" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128366" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1738" fbc:label="b1738" metaid="G_b1738">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1738">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P69795" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005797" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10140" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945339" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129692" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2715" fbc:label="b2715" metaid="G_b2715">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2715">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P24241" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008926" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10086" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947154" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:49176263" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1736" fbc:label="b1736" metaid="G_b1736">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1736">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P69791" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005792" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10142" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946244" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129690" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1737" fbc:label="b1737" metaid="G_b1737">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1737">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P17334" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005795" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10141" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945982" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129691" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2224" fbc:label="b2224" metaid="G_b2224">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2224">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P76461" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007355" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11672" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946727" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130161" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1216" fbc:label="b1216" metaid="G_b1216">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1216">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P31801" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004082" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11753" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945790" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129179" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0842" fbc:label="b0842" metaid="G_b0842">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0842">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AEY8" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002871" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13696" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945448" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128810" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3350" fbc:label="b3350" metaid="G_b3350">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3350">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P45522" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0010949" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG20110" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947858" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131229" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0047" fbc:label="b0047" metaid="G_b0047">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0047">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P03819" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000161" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10521" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944773" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128041" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0728" fbc:label="b0728" metaid="G_b0728">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0728">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A836" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002483" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10981" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945312" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128703" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0729" fbc:label="b0729" metaid="G_b0729">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0729">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AGE9" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002485" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10982" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945314" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128704" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0650" fbc:label="b0650" metaid="G_b0650">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0650">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77319" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002225" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13653" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945218" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128633" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0757" fbc:label="b0757" metaid="G_b0757">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0757">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A6T3" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002568" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10363" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945358" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128725" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0133" fbc:label="b0133" metaid="G_b0133">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0133">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P31663" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000465" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11746" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944958" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128126" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2165" fbc:label="b2165" metaid="G_b2165">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2165">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P33025" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007165" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12033" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946699" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130103" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3389" fbc:label="b3389" metaid="G_b3389">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3389">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P07639" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011067" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10074" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947927" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131267" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2366" fbc:label="b2366" metaid="G_b2366">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2366">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P00926" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007804" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10249" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946837" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130298" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1723" fbc:label="b1723" metaid="G_b1723">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1723">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P06999" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005748" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10700" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946230" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:49176138" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0755" fbc:label="b0755" metaid="G_b0755">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0755">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P62707" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002563" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11699" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945068" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128723" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3612" fbc:label="b3612" metaid="G_b3612">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3612">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P37689" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011818" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12296" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948130" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131483" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3919" fbc:label="b3919" metaid="G_b3919">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3919">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A858" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012799" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11015" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948409" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131757" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2914" fbc:label="b2914" metaid="G_b2914">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2914">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A7Z0" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009567" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11443" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947407" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130815" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2320" fbc:label="b2320" metaid="G_b2320">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2320">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P05459" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007663" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10692" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946785" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130255" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1107" fbc:label="b1107" metaid="G_b1107">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1107">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P75949" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003737" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13433" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945671" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129070" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1539" fbc:label="b1539" metaid="G_b1539">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1539">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P39831" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005137" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12345" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946085" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129498" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3823" fbc:label="b3823" metaid="G_b3823">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3823">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AG38" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012487" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11468" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948317" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:49176421" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0813" fbc:label="b0813" metaid="G_b0813">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0813">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AA67" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002779" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12134" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947045" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128781" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2919" fbc:label="b2919" metaid="G_b2919">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2919">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P52045" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009581" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12972" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947408" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111512" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3870" fbc:label="b3870" metaid="G_b3870">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3870">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A9C5" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012640" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10383" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948370" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131710" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2947" fbc:label="b2947" metaid="G_b2947">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2947">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P04425" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009667" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10419" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947445" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130848" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2253" fbc:label="b2253" metaid="G_b2253">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2253">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77690" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007456" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG14089" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947375" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:145698288" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2254" fbc:label="b2254" metaid="G_b2254">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2254">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77757" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007458" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG14090" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945275" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130189" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2256" fbc:label="b2256" metaid="G_b2256">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2256">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P76472" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007462" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG14092" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945334" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130191" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2258" fbc:label="b2258" metaid="G_b2258">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2258">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P76474" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007466" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG14094" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945344" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111409" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4544" fbc:label="b4544" metaid="G_b4544">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4544">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/Q47377" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0285065" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG14344" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/1450282" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:94541119" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3621" fbc:label="b3621" metaid="G_b3621">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3621">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P24173" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011847" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11189" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948136" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131492" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1781" fbc:label="b1781" metaid="G_b1781">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1781">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P76234" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005925" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13491" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946302" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129735" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3001" fbc:label="b3001" metaid="G_b3001">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3001">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/Q46851" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009848" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13010" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947480" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130899" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3620" fbc:label="b3620" metaid="G_b3620">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3620">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P37692" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011845" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12210" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948135" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131491" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3624" fbc:label="b3624" metaid="G_b3624">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3624">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P27241" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011854" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11426" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948146" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131495" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3629" fbc:label="b3629" metaid="G_b3629">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3629">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P27126" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011864" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11350" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948151" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131500" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3628" fbc:label="b3628" metaid="G_b3628">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3628">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P27127" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011862" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11351" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948144" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:226524757" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3627" fbc:label="b3627" metaid="G_b3627">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3627">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P27128" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011860" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11352" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948143" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131498" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3850" fbc:label="b3850" metaid="G_b3850">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3850">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0ACB4" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012577" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11485" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948331" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131696" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3630" fbc:label="b3630" metaid="G_b3630">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3630">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P25741" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011866" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11340" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948150" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131501" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3632" fbc:label="b3632" metaid="G_b3632">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3632">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P25742" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011870" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11341" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948155" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131503" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3625" fbc:label="b3625" metaid="G_b3625">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3625">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P27240" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011856" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11425" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948145" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131496" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2810" fbc:label="b2810" metaid="G_b2810">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2810">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/Q46925" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009218" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13082" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947275" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130717" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1680" fbc:label="b1680" metaid="G_b1680">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1680">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77444" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005610" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13962" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946185" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129636" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3867" fbc:label="b3867" metaid="G_b3867">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3867">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P32131" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012629" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11836" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948362" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111657" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3824" fbc:label="b3824" metaid="G_b3824">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3824">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AG34" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012490" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11469" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948316" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:49176422" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2133" fbc:label="b2133" metaid="G_b2133">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2133">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P06149" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007048" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10231" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946653" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130071" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2260" fbc:label="b2260" metaid="G_b2260">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2260">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P37353" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007471" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12437" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946741" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130195" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1919" fbc:label="b1919" metaid="G_b1919">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1919">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P76316" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006389" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG14038" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946831" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111355" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2578" fbc:label="b2578" metaid="G_b2578">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2578">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P38101" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008487" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12445" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947065" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130503" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1533" fbc:label="b1533" metaid="G_b1533">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1533">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P31125" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005116" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11639" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946081" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111291" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4394" fbc:label="b4394" metaid="G_b4394">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4394">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P39411" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0014411" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12600" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948919" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111748" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2499" fbc:label="b2499" metaid="G_b2499">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2499">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P08178" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008230" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10798" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946975" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130424" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3825" fbc:label="b3825" metaid="G_b3825">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3825">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P07000" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012494" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10739" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948314" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:49176423" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2835" fbc:label="b2835" metaid="G_b2835">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2835">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P39196" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009300" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12455" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947317" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130739" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3029" fbc:label="b3029" metaid="G_b3029">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3029">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0ADU2" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009948" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12657" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947506" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130925" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2889" fbc:label="b2889" metaid="G_b2889">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2889">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/Q46822" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009484" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13072" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/949020" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130791" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3821" fbc:label="b3821" metaid="G_b3821">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3821">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A921" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012479" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10738" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948307" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131671" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2146" fbc:label="b2146" metaid="G_b2146">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2146">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P76440" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007096" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG14074" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/949049" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130084" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2147" fbc:label="b2147" metaid="G_b2147">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2147">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P25889" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007098" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11289" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/949037" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111398" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4478" fbc:label="b4478" metaid="G_b4478">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4478">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/Q6BF17" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0174106" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG20050" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/2847765" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:49176390" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1380" fbc:label="b1380" metaid="G_b1380">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1380">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P52643" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004619" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13186" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946315" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129341" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2965" fbc:label="b2965" metaid="G_b2965">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2965">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P21169" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009730" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10961" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947457" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111522" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0693" fbc:label="b0693" metaid="G_b0693">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0693">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P24169" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002362" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10964" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945297" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128669" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0954" fbc:label="b0954" metaid="G_b0954">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0954">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A6Q3" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003229" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10273" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945568" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128921" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1288" fbc:label="b1288" metaid="G_b1288">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1288">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AEK4" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004327" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11528" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945870" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129249" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0175" fbc:label="b0175" metaid="G_b0175">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0175">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0ABG1" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000600" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10139" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944876" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111095" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3918" fbc:label="b3918" metaid="G_b3918">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3918">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P06282" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012797" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10138" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948410" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131756" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1912" fbc:label="b1912" metaid="G_b1912">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1912">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0ABF8" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006367" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10706" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945791" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129859" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2585" fbc:label="b2585" metaid="G_b2585">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2585">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P23830" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008510" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10781" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947059" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111464" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1093" fbc:label="b1093" metaid="G_b1093">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1093">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AEK2" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003700" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11318" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945645" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129056" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1661" fbc:label="b1661" metaid="G_b1661">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1661">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A9H7" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005555" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11531" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944811" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129619" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1006" fbc:label="b1006" metaid="G_b1006">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1006">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P75892" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003401" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13853" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946589" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111201" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2497" fbc:label="b2497" metaid="G_b2497">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2497">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AGM7" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008219" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12129" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946978" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130422" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1488" fbc:label="b1488" metaid="G_b1488">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1488">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77790" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004960" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13791" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945532" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129447" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3541" fbc:label="b3541" metaid="G_b3541">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3541">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AAG0" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011566" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12627" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948065" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131413" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3543" fbc:label="b3543" metaid="G_b3543">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3543">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AEF8" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011572" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12625" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948063" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131415" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3540" fbc:label="b3540" metaid="G_b3540">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3540">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P37313" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011564" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12628" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948056" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131412" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1487" fbc:label="b1487" metaid="G_b1487">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1487">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P76128" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004958" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13790" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946052" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129446" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3544" fbc:label="b3544" metaid="G_b3544">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3544">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P23847" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011576" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10248" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948062" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131416" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1486" fbc:label="b1486" metaid="G_b1486">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1486">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77308" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004955" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13789" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946044" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129445" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1483" fbc:label="b1483" metaid="G_b1483">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1483">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77622" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004947" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13786" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946020" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129442" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1484" fbc:label="b1484" metaid="G_b1484">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1484">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77268" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004949" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13787" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946002" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129443" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1485" fbc:label="b1485" metaid="G_b1485">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1485">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77463" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004953" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13788" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946028" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129444" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3542" fbc:label="b3542" metaid="G_b3542">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3542">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AEG1" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011570" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12626" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948064" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131414" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0832" fbc:label="b0832" metaid="G_b0832">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0832">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P75799" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002836" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13475" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945461" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128800" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0831" fbc:label="b0831" metaid="G_b0831">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0831">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P75798" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002834" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13474" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945460" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128799" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0829" fbc:label="b0829" metaid="G_b0829">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0829">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P75796" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002830" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13472" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945457" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:145698235" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0830" fbc:label="b0830" metaid="G_b0830">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0830">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P75797" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002832" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13473" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945459" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128798" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0789" fbc:label="b0789" metaid="G_b0789">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0789">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AA84" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002692" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13671" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945409" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128757" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1249" fbc:label="b1249" metaid="G_b1249">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1249">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A6H8" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004186" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11608" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945821" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129210" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0657" fbc:label="b0657" metaid="G_b0657">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0657">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P23930" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002250" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10168" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946201" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128640" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1677" fbc:label="b1677" metaid="G_b1677">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1677">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P69776" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005603" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10544" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946175" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129633" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0418" fbc:label="b0418" metaid="G_b0418">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0418">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P18200" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001454" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10704" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947542" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128403" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0508" fbc:label="b0508" metaid="G_b0508">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0508">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P30147" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001756" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11584" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946186" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128492" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0613" fbc:label="b0613" metaid="G_b0613">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0613">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77231" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002114" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13539" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946395" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128596" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1301" fbc:label="b1301" metaid="G_b1301">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1301">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P37906" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004378" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11822" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945072" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129262" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0805" fbc:label="b0805" metaid="G_b0805">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0805">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P75780" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002749" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13317" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946246" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128773" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2155" fbc:label="b2155" metaid="G_b2155">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2155">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P17315" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007126" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10155" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/949042" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130093" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0576" fbc:label="b0576" metaid="G_b0576">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0576">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P24207" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001976" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10708" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945199" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128559" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0594" fbc:label="b0594" metaid="G_b0594">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0594">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P10378" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002049" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10263" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947426" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128577" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0376" fbc:label="b0376" metaid="G_b0376">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0376">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AD70" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001292" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12867" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946904" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128361" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0632" fbc:label="b0632" metaid="G_b0632">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0632">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AEB2" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002168" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10201" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945222" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128615" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0839" fbc:label="b0839" metaid="G_b0839">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0839">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P08506" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002860" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10203" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945455" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128807" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2010" fbc:label="b2010" metaid="G_b2010">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2010">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P33013" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006680" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11893" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946518" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:162135904" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2430" fbc:label="b2430" metaid="G_b2430">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2430">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77619" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008012" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG14164" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946907" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111432" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3182" fbc:label="b3182" metaid="G_b3182">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3182">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P24228" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0010458" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10202" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947693" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131072" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3833" fbc:label="b3833" metaid="G_b3833">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3833">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A887" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012534" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11473" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948926" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:49176426" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0514" fbc:label="b0514" metaid="G_b0514">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0514">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77364" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001773" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13621" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945129" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128498" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0089" fbc:label="b0089" metaid="G_b0089">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0089">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0ABG4" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000320" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10344" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946322" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128082" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3396" fbc:label="b3396" metaid="G_b3396">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3396">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P02918" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011082" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10748" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947907" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:162135911" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2519" fbc:label="b2519" metaid="G_b2519">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2519">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P76577" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008294" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG14210" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947152" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130444" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1069" fbc:label="b1069" metaid="G_b1069">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1069">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AF16" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003630" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13880" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945487" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129032" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3208" fbc:label="b3208" metaid="G_b3208">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3208">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P46022" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0010530" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12808" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947728" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131098" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0149" fbc:label="b0149" metaid="G_b0149">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0149">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P02919" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000516" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10605" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944843" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128142" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0635" fbc:label="b0635" metaid="G_b0635">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0635">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AD65" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002178" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10606" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945240" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128618" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0084" fbc:label="b0084" metaid="G_b0084">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0084">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AD68" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000309" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10341" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944799" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128077" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0925" fbc:label="b0925" metaid="G_b0925">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0925">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P22525" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003142" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11253" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945541" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128892" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1678" fbc:label="b1678" metaid="G_b1678">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1678">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P76193" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005605" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG14015" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946174" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129634" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0355" fbc:label="b0355" metaid="G_b0355">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0355">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P51025" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001219" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13295" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944991" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128340" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2154" fbc:label="b2154" metaid="G_b2154">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2154">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P33018" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007124" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12026" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/949045" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130092" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2893" fbc:label="b2893" metaid="G_b2893">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2893">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AEG6" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009494" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11070" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947363" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130795" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0604" fbc:label="b0604" metaid="G_b0604">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0604">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77202" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002084" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13535" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945224" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111151" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3930" fbc:label="b3930" metaid="G_b3930">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3930">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P32166" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012841" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11880" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948418" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131768" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3994" fbc:label="b3994" metaid="G_b3994">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3994">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P30136" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013057" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11585" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948492" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131824" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1710" fbc:label="b1710" metaid="G_b1710">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1710">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P06610" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005709" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10129" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945915" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129666" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2480" fbc:label="b2480" metaid="G_b2480">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2480">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AE52" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008171" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10108" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946949" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130405" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0429" fbc:label="b0429" metaid="G_b0429">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0429">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0ABJ6" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001487" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10181" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944918" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128414" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0432" fbc:label="b0432" metaid="G_b0432">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0432">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0ABJ1" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001495" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10178" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945080" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128417" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0431" fbc:label="b0431" metaid="G_b0431">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0431">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0ABI8" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001493" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10179" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945615" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128416" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0430" fbc:label="b0430" metaid="G_b0430">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0430">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0ABJ3" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001491" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10180" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946897" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128415" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4041" fbc:label="b4041" metaid="G_b4041">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4041">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A7A7" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013232" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10740" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948541" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111678" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0180" fbc:label="b0180" metaid="G_b0180">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0180">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A6Q6" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000613" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11284" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944888" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128173" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2413" fbc:label="b2413" metaid="G_b2413">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2413">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A6J3" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007953" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10003" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946875" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130339" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3018" fbc:label="b3018" metaid="G_b3018">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3018">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P26647" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009910" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11377" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947496" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130914" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4042" fbc:label="b4042" metaid="G_b4042">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4042">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0ABN1" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013235" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10224" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948543" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131868" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4160" fbc:label="b4160" metaid="G_b4160">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4160">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A8K1" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013623" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10775" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948673" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131985" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0723" fbc:label="b0723" metaid="G_b0723">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0723">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AC41" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002466" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10931" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945402" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128698" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0722" fbc:label="b0722" metaid="G_b0722">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0722">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AC44" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002464" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10934" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945322" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128697" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0724" fbc:label="b0724" metaid="G_b0724">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0724">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P07014" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002468" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10932" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945300" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128699" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0721" fbc:label="b0721" metaid="G_b0721">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0721">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P69054" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002460" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10933" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945316" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128696" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0494" fbc:label="b0494" metaid="G_b0494">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0494">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0ADA1" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001713" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11542" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945127" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128478" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1276" fbc:label="b1276" metaid="G_b1276">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1276">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P25516" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004283" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11325" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946724" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129237" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0118" fbc:label="b0118" metaid="G_b0118">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0118">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P36683" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000411" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12316" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944864" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128111" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3447" fbc:label="b3447" metaid="G_b3447">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3447">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P18956" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011257" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10374" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947947" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131319" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1990" fbc:label="b1990" metaid="G_b1990">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1990">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P39176" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006607" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12682" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945273" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129931" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1113" fbc:label="b1113" metaid="G_b1113">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1113">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P75954" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003760" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13437" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945666" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129076" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0819" fbc:label="b0819" metaid="G_b0819">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0819">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AAX8" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002797" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13324" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945441" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128787" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2813" fbc:label="b2813" metaid="G_b2813">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2813">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A935" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009228" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13085" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944964" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130720" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0211" fbc:label="b0211" metaid="G_b0211">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0211">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AEZ7" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000704" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10246" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945694" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128198" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1097" fbc:label="b1097" metaid="G_b1097">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1097">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P28306" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003712" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11494" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945660" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129060" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1193" fbc:label="b1193" metaid="G_b1193">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1193">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0C960" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004006" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13897" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945655" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111231" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2701" fbc:label="b2701" metaid="G_b2701">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2701">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P41052" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008885" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12699" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947184" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130608" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4392" fbc:label="b4392" metaid="G_b4392">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4392">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AGC3" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0014404" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10950" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948908" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111747" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2963" fbc:label="b2963" metaid="G_b2963">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2963">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0C066" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009725" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12986" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945428" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111520" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2558" fbc:label="b2558" metaid="G_b2558">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2558">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AGC5" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008417" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11373" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947028" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:171701683" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3546" fbc:label="b3546" metaid="G_b3546">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3546">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P37661" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011581" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12267" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948068" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111611" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1655" fbc:label="b1655" metaid="G_b1655">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1655">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P76190" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005533" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13949" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945210" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129613" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2328" fbc:label="b2328" metaid="G_b2328">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2328">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0C0T5" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007691" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10580" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946812" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130263" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2134" fbc:label="b2134" metaid="G_b2134">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2134">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AFI5" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007050" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12015" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946662" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:162135905" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1856" fbc:label="b1856" metaid="G_b1856">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1856">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AFS9" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006189" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10013" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946376" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111345" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1185" fbc:label="b1185" metaid="G_b1185">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1185">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A6M2" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003979" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11393" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946344" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:49176085" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3860" fbc:label="b3860" metaid="G_b3860">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3860">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AEG4" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012606" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11297" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948353" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131701" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4136" fbc:label="b4136" metaid="G_b4136">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4136">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P36655" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013539" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12178" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948649" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131961" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0606" fbc:label="b0606" metaid="G_b0606">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0606">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P35340" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002093" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11385" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947540" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111152" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0605" fbc:label="b0605" metaid="G_b0605">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0605">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AE08" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002090" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11384" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945225" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128588" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0221" fbc:label="b0221" metaid="G_b0221">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0221">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/Q47146" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000743" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13145" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/949007" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111100" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2285" fbc:label="b2285" metaid="G_b2285">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2285">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AFD1" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007547" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12086" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946746" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130220" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2286" fbc:label="b2286" metaid="G_b2286">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2286">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P33599" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007549" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12084" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946759" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:145698291" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2288" fbc:label="b2288" metaid="G_b2288">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2288">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AFC3" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007553" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12082" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946764" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:49176207" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2283" fbc:label="b2283" metaid="G_b2283">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2283">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P33602" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007543" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12087" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946762" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:145698290" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2279" fbc:label="b2279" metaid="G_b2279">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2279">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AFE4" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007534" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12091" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947580" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130214" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2278" fbc:label="b2278" metaid="G_b2278">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2278">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P33607" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007532" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12092" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945540" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130213" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2276" fbc:label="b2276" metaid="G_b2276">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2276">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AFF0" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007526" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12093" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945136" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:145698289" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2284" fbc:label="b2284" metaid="G_b2284">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2284">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P31979" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007545" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11774" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946753" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130219" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2282" fbc:label="b2282" metaid="G_b2282">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2282">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AFD4" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007541" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12088" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946761" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130217" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2281" fbc:label="b2281" metaid="G_b2281">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2281">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AFD6" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007539" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12089" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946757" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130216" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2277" fbc:label="b2277" metaid="G_b2277">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2277">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AFE8" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007529" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11773" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947731" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130212" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2287" fbc:label="b2287" metaid="G_b2287">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2287">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AFC7" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007551" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12083" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946738" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130222" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2280" fbc:label="b2280" metaid="G_b2280">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2280">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AFE0" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007536" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12090" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946756" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130215" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1801" fbc:label="b1801" metaid="G_b1801">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1801">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0ABD1" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005995" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13508" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947326" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129755" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4208" fbc:label="b4208" metaid="G_b4208">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4208">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AAE0" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013764" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12504" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948725" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16132030" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0007" fbc:label="b0007" metaid="G_b0007">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0007">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P30143" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000020" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11555" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944745" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128001" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0874" fbc:label="b0874" metaid="G_b0874">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0874">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P75826" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002966" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13426" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947142" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111181" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2923" fbc:label="b2923" metaid="G_b2923">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2923">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P11667" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009591" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11159" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947418" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130824" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0037" fbc:label="b0037" metaid="G_b0037">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0037">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P31552" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000133" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11558" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944886" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:221800780" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1734" fbc:label="b1734" metaid="G_b1734">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1734">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P17411" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005785" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10144" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946266" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129688" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2467" fbc:label="b2467" metaid="G_b2467">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2467">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P37128" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008123" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12410" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947072" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130392" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0404" fbc:label="b0404" metaid="G_b0404">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0404">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P21515" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001404" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11095" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/949132" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128389" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0314" fbc:label="b0314" metaid="G_b0314">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0314">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0ABC9" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001080" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10112" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945079" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128299" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4474" fbc:label="b4474" metaid="G_b4474">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4474">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P45541" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0174114" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12910" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/2847758" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:49176341" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3370" fbc:label="b3370" metaid="G_b3370">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3370">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P45539" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011019" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12908" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947878" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111576" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3816" fbc:label="b3816" metaid="G_b3816">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3816">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0ABI4" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012464" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11463" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948351" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131666" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3040" fbc:label="b3040" metaid="G_b3040">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3040">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A8H3" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009977" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11167" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947035" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130936" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2373" fbc:label="b2373" metaid="G_b2373">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2373">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AFI0" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007826" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG14143" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946845" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130305" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4233" fbc:label="b4233" metaid="G_b4233">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4233">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P37773" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013847" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12440" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948752" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16132055" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3196" fbc:label="b3196" metaid="G_b3196">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3196">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P45394" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0010502" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12802" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947730" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131086" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3691" fbc:label="b3691" metaid="G_b3691">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3691">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AA76" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012072" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11715" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948196" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111641" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2843" fbc:label="b2843" metaid="G_b2843">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2843">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/Q46938" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009332" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13096" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947319" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130747" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2156" fbc:label="b2156" metaid="G_b2156">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2156">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P25737" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007131" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11337" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946667" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130094" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4130" fbc:label="b4130" metaid="G_b4130">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4130">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P39276" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013524" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12469" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948644" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131956" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4356" fbc:label="b4356" metaid="G_b4356">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4356">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P39398" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0014284" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12588" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948879" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16132177" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4358" fbc:label="b4358" metaid="G_b4358">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4358">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P39400" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0014294" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12590" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948883" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:226524765" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3431" fbc:label="b3431" metaid="G_b3431">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3431">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P15067" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011206" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10381" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947941" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131305" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0155" fbc:label="b0155" metaid="G_b0155">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0155">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P37019" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000533" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12331" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946715" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128148" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0684" fbc:label="b0684" metaid="G_b0684">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0684">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P61949" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002332" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10318" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945293" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128660" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1378" fbc:label="b1378" metaid="G_b1378">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1378">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P52647" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004613" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13183" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946587" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129339" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2895" fbc:label="b2895" metaid="G_b2895">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2895">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0ABY4" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009503" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12697" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947361" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130797" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0777" fbc:label="b0777" metaid="G_b0777">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0777">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P12999" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002648" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10119" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945388" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128745" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0641" fbc:label="b0641" metaid="G_b0641">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0641">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0ADC1" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002194" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10855" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946257" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128624" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3201" fbc:label="b3201" metaid="G_b3201">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3201">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A9V1" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0010512" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11680" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947725" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131091" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3200" fbc:label="b3200" metaid="G_b3200">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3200">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0ADV1" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0010510" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12618" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947920" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131090" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4261" fbc:label="b4261" metaid="G_b4261">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4261">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AF98" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013958" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12535" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948795" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16132083" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4262" fbc:label="b4262" metaid="G_b4262">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4262">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0ADC6" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013960" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12536" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945324" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111715" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3199" fbc:label="b3199" metaid="G_b3199">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3199">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0ADV9" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0010508" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12806" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947722" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131089" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0054" fbc:label="b0054" metaid="G_b0054">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0054">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P31554" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000183" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11569" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945011" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128048" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1025" fbc:label="b1025" metaid="G_b1025">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1025">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P75908" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003472" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13866" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945593" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128989" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1490" fbc:label="b1490" metaid="G_b1490">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1490">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AA89" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004965" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13793" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945835" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:145698262" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1535" fbc:label="b1535" metaid="G_b1535">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1535">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P31129" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005123" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11643" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946075" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129494" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1794" fbc:label="b1794" metaid="G_b1794">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1794">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P76245" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005972" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13502" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948969" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111334" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1341" fbc:label="b1341" metaid="G_b1341">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1341">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77302" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004504" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13355" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945909" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111253" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2503" fbc:label="b2503" metaid="G_b2503">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2503">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77172" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008240" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG14202" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946968" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130428" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0315" fbc:label="b0315" metaid="G_b0315">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0315">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P21514" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001086" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11236" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947459" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128300" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1285" fbc:label="b1285" metaid="G_b1285">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1285">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77334" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004317" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13415" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945868" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129246" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3525" fbc:label="b3525" metaid="G_b3525">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3525">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P37646" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011515" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12252" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948042" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111605" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0009" fbc:label="b0009" metaid="G_b0009">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0009">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AF03" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000030" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11511" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944760" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128003" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0784" fbc:label="b0784" metaid="G_b0784">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0784">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P30748" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002675" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11597" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945398" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128752" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2530" fbc:label="b2530" metaid="G_b2530">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2530">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A6B7" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008324" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12677" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947004" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:49176235" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2470" fbc:label="b2470" metaid="G_b2470">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2470">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P24177" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008136" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10014" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945464" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130395" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0463" fbc:label="b0463" metaid="G_b0463">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0463">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AE06" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001603" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11703" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945112" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128447" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0462" fbc:label="b0462" metaid="G_b0462">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0462">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P31224" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001601" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11704" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945108" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128446" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1394" fbc:label="b1394" metaid="G_b1394">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1394">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77467" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004661" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13741" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946263" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129355" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1090" fbc:label="b1090" metaid="G_b1090">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1090">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P27247" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003692" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11437" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946165" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111212" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3059" fbc:label="b3059" metaid="G_b3059">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3059">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P60782" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0010042" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11674" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947561" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130955" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2529" fbc:label="b2529" metaid="G_b2529">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2529">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0ACD4" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008321" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13395" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947002" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130454" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1683" fbc:label="b1683" metaid="G_b1683">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1683">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77522" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005621" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13965" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945753" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111315" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1684" fbc:label="b1684" metaid="G_b1684">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1684">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77667" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005624" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11378" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/949014" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129640" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1682" fbc:label="b1682" metaid="G_b1682">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1682">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77499" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005619" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13964" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946128" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129638" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1681" fbc:label="b1681" metaid="G_b1681">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1681">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77689" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005617" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13963" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944878" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129637" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0827" fbc:label="b0827" metaid="G_b0827">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0827">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P12281" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002823" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10153" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945454" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128795" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3856" fbc:label="b3856" metaid="G_b3856">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3856">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P32125" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012591" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11828" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948343" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:145698333" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3857" fbc:label="b3857" metaid="G_b3857">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3857">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P32173" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012593" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11829" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948349" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131698" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3058" fbc:label="b3058" metaid="G_b3058">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3058">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AC16" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0010036" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11673" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947544" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111533" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1634" fbc:label="b1634" metaid="G_b1634">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1634">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77304" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005469" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13939" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947436" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129592" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3496" fbc:label="b3496" metaid="G_b3496">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3496">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P36837" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011417" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12232" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948006" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131368" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0709" fbc:label="b0709" metaid="G_b0709">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0709">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P75742" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002420" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13304" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947368" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128684" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2528" fbc:label="b2528" metaid="G_b2528">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2528">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AAC8" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008319" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12132" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946999" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130453" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1679" fbc:label="b1679" metaid="G_b1679">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1679">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P76194" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005608" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13961" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946173" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129635" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0775" fbc:label="b0775" metaid="G_b0775">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0775">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P12996" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002644" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10118" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945370" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128743" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1009" fbc:label="b1009" metaid="G_b1009">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1009">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P75895" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003410" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13856" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946586" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128975" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0444" fbc:label="b0444" metaid="G_b0444">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0444">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77756" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001539" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13252" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947034" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128429" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2794" fbc:label="b2794" metaid="G_b2794">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2794">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/Q46920" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009162" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13173" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947270" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130701" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1008" fbc:label="b1008" metaid="G_b1008">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1008">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P75894" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003407" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13855" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946591" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128974" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2765" fbc:label="b2765" metaid="G_b2765">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2765">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P65870" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009068" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13120" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945123" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130672" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2263" fbc:label="b2263" metaid="G_b2263">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2263">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P37355" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007478" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12438" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946736" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130198" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1011" fbc:label="b1011" metaid="G_b1011">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1011">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P75897" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003414" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13858" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945699" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111203" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1010" fbc:label="b1010" metaid="G_b1010">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1010">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AFQ5" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003412" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13857" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945599" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128976" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0968" fbc:label="b0968" metaid="G_b0968">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0968">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AB65" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003276" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13726" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945304" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128935" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2264" fbc:label="b2264" metaid="G_b2264">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2264">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P17109" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007482" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10579" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946720" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130199" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2262" fbc:label="b2262" metaid="G_b2262">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2262">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0ABU0" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007476" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11368" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946747" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130197" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1686" fbc:label="b1686" metaid="G_b1686">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1686">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77781" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005628" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13968" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946190" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129642" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3991" fbc:label="b3991" metaid="G_b3991">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3991">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P30139" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013050" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11589" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948493" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:33347812" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3992" fbc:label="b3992" metaid="G_b3992">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3992">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P30138" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013053" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11587" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948500" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111672" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0423" fbc:label="b0423" metaid="G_b0423">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0423">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77718" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001470" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13273" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945067" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128408" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3990" fbc:label="b3990" metaid="G_b3990">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3990">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P30140" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013048" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11590" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948494" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131820" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4407" fbc:label="b4407" metaid="G_b4407">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4407">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/O32583" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0023907" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG14363" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/2847702" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:49176448" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2877" fbc:label="b2877" metaid="G_b2877">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2877">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/Q46810" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009447" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13060" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947356" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130779" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2374" fbc:label="b2374" metaid="G_b2374">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2374">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P69902" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007828" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG14145" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946842" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130306" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1392" fbc:label="b1392" metaid="G_b1392">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1392">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P76081" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004657" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13739" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945962" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129353" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1391" fbc:label="b1391" metaid="G_b1391">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1391">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P76080" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004655" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13738" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945959" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:226524712" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1390" fbc:label="b1390" metaid="G_b1390">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1390">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P76079" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004653" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13737" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945956" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129351" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1388" fbc:label="b1388" metaid="G_b1388">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1388">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P76077" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004649" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13736" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945833" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129349" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1389" fbc:label="b1389" metaid="G_b1389">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1389">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P76078" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004651" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG14299" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947595" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129350" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1397" fbc:label="b1397" metaid="G_b1397">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1397">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0C7L2" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004668" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13744" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946121" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129358" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1395" fbc:label="b1395" metaid="G_b1395">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1395">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P76083" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004663" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13742" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945940" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129356" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1007" fbc:label="b1007" metaid="G_b1007">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1007">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P75893" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003403" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13854" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946594" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111202" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1012" fbc:label="b1012" metaid="G_b1012">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1012">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P75898" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003416" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13859" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945643" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:49176071" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0785" fbc:label="b0785" metaid="G_b0785">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0785">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P30749" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002678" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11598" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945399" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128753" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3893" fbc:label="b3893" metaid="G_b3893">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3893">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AAJ5" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012708" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11857" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948395" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131733" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1474" fbc:label="b1474" metaid="G_b1474">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1474">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P24183" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004917" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11227" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946035" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129433" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3894" fbc:label="b3894" metaid="G_b3894">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3894">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P32176" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012710" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11858" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948394" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131734" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1475" fbc:label="b1475" metaid="G_b1475">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1475">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AAJ3" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004919" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11228" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948794" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129434" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3892" fbc:label="b3892" metaid="G_b3892">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3892">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AEL0" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012705" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11856" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948383" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131732" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1476" fbc:label="b1476" metaid="G_b1476">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1476">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AEK7" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004921" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11229" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946038" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129435" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0776" fbc:label="b0776" metaid="G_b0776">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0776">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P12998" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002646" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10121" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945384" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128744" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3412" fbc:label="b3412" metaid="G_b3412">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3412">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P13001" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011136" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10122" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947916" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131288" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2515" fbc:label="b2515" metaid="G_b2515">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2515">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P62620" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008281" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10370" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946991" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130440" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4238" fbc:label="b4238" metaid="G_b4238">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4238">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P28903" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013865" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11417" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948755" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16132060" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4237" fbc:label="b4237" metaid="G_b4237">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4237">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A9N8" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013860" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12523" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948757" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16132059" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3924" fbc:label="b3924" metaid="G_b3924">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3924">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P28861" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012818" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11518" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948414" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131762" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4209" fbc:label="b4209" metaid="G_b4209">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4209">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P69506" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013766" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12505" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948724" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16132031" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1387" fbc:label="b1387" metaid="G_b1387">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1387">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77455" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004644" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13735" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945954" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129348" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1393" fbc:label="b1393" metaid="G_b1393">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1393">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P76082" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004659" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13740" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946011" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129354" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2912" fbc:label="b2912" metaid="G_b2912">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2912">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AC28" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009559" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11158" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945167" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:49176282" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2174" fbc:label="b2174" metaid="G_b2174">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2174">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P76445" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007196" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG14075" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946693" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111400" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0826" fbc:label="b0826" metaid="G_b0826">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0826">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P12282" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002820" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10154" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945452" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128794" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0781" fbc:label="b0781" metaid="G_b0781">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0781">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P30745" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002669" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11595" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945392" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128749" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0783" fbc:label="b0783" metaid="G_b0783">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0783">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A738" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002673" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11666" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945397" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128751" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0630" fbc:label="b0630" metaid="G_b0630">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0630">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P60720" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002160" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11591" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945217" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111156" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0628" fbc:label="b0628" metaid="G_b0628">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0628">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P60716" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002155" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11306" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945227" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128611" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4386" fbc:label="b4386" metaid="G_b4386">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4386">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P32099" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0014385" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11796" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944865" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16132203" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1385" fbc:label="b1385" metaid="G_b1385">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1385">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P80668" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004637" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13179" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945933" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111264" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2917" fbc:label="b2917" metaid="G_b2917">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2917">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P27253" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009577" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11444" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945576" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130818" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3572" fbc:label="b3572" metaid="G_b3572">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3572">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P09053" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011671" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10107" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948087" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:49176374" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4129" fbc:label="b4129" metaid="G_b4129">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4129">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A8N5" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013520" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10553" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948645" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131955" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3722" fbc:label="b3722" metaid="G_b3722">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3722">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P08722" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012171" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10115" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948236" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131590" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0681" fbc:label="b0681" metaid="G_b0681">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0681">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P75733" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002323" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13659" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945296" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128657" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1473" fbc:label="b1473" metaid="G_b1473">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1473">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P46136" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004912" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12713" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945942" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:145698260" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3882" fbc:label="b3882" metaid="G_b3882">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3882">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A9V8" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012678" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11847" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948372" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131722" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1600" fbc:label="b1600" metaid="G_b1600">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1600">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P69212" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005345" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13927" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946139" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129558" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1599" fbc:label="b1599" metaid="G_b1599">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1599">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P69210" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005343" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13926" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947333" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129557" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2660" fbc:label="b2660" metaid="G_b2660">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2660">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P37339" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008756" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12387" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948069" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111477" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4167" fbc:label="b4167" metaid="G_b4167">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4167">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P31806" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013644" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11758" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948685" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131989" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2670" fbc:label="b2670" metaid="G_b2670">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2670">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P64550" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008793" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13525" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947147" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130584" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3070" fbc:label="b3070" metaid="G_b3070">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3070">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/Q46871" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0010079" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12953" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947582" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130965" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0269" fbc:label="b0269" metaid="G_b0269">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0269">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77596" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000923" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13345" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944928" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128254" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4297" fbc:label="b4297" metaid="G_b4297">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4297">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P39358" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0014087" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12549" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946829" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16132118" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4298" fbc:label="b4298" metaid="G_b4298">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4298">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P39359" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0014089" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12550" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948825" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111725" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0268" fbc:label="b0268" metaid="G_b0268">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0268">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P75682" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0000921" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13344" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/944925" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:345452715" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3715" fbc:label="b3715" metaid="G_b3715">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3715">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P31467" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012153" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11725" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948232" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131583" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0516" fbc:label="b0516" metaid="G_b0516">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0516">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77425" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001777" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13623" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945150" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128500" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0515" fbc:label="b0515" metaid="G_b0515">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0515">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P75713" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001775" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13622" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945149" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128499" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1617" fbc:label="b1617" metaid="G_b1617">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1617">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P05804" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005410" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11055" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946149" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129575" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1695" fbc:label="b1695" metaid="G_b1695">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1695">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A9U8" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005658" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13974" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945626" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111318" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1771" fbc:label="b1771" metaid="G_b1771">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1771">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77256" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005901" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13483" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946283" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129725" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2907" fbc:label="b2907" metaid="G_b2907">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2907">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P25534" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009545" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11324" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947388" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130809" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0543" fbc:label="b0543" metaid="G_b0543">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0543">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P23895" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001863" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10629" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948442" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128526" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1601" fbc:label="b1601" metaid="G_b1601">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1601">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AFS5" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005350" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13928" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946142" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129559" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0624" fbc:label="b0624" metaid="G_b0624">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0624">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P37002" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002144" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12209" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945798" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128607" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3880" fbc:label="b3880" metaid="G_b3880">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3880">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P32140" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012673" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11845" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948374" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111658" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3881" fbc:label="b3881" metaid="G_b3881">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3881">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P32141" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012675" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11846" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948373" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131721" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3877" fbc:label="b3877" metaid="G_b3877">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3877">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P32137" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012664" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11842" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948371" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:145698335" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3876" fbc:label="b3876" metaid="G_b3876">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3876">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P32136" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012661" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11841" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948377" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:49176435" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1511" fbc:label="b1511" metaid="G_b1511">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1511">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77432" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005041" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13804" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946069" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:49176118" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2371" fbc:label="b2371" metaid="G_b2371">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2371">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P76518" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007821" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13284" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946432" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:162135906" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2989" fbc:label="b2989" metaid="G_b2989">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2989">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/Q46845" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009812" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13005" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947472" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111524" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2302" fbc:label="b2302" metaid="G_b2302">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2302">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77526" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007600" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG14110" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946763" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130237" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1619" fbc:label="b1619" metaid="G_b1619">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1619">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AET8" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005419" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10425" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946151" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129577" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4337" fbc:label="b4337" metaid="G_b4337">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4337">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P39386" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0014221" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12576" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948861" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16132158" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1338" fbc:label="b1338" metaid="G_b1338">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1338">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77357" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004493" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13352" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945742" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111252" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1337" fbc:label="b1337" metaid="G_b1337">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1337">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P76052" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004491" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13351" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945950" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129298" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1336" fbc:label="b1336" metaid="G_b1336">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1336">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P46133" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004488" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12853" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945912" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111251" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2873" fbc:label="b2873" metaid="G_b2873">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2873">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/Q46806" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009436" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13056" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947359" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111504" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1430" fbc:label="b1430" metaid="G_b1430">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1430">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P25397" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004772" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11884" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945979" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129389" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1396" fbc:label="b1396" metaid="G_b1396">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1396">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P76084" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004666" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13743" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945265" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129357" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3943" fbc:label="b3943" metaid="G_b3943">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3943">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0ABT8" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012906" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11902" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948445" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111667" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0578" fbc:label="b0578" metaid="G_b0578">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0578">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P38489" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001981" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG20151" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945778" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128561" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3253" fbc:label="b3253" metaid="G_b3253">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3253">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P26646" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0010667" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11315" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947848" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131141" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1022" fbc:label="b1022" metaid="G_b1022">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1022">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P75905" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003464" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13863" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945606" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128986" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1021" fbc:label="b1021" metaid="G_b1021">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1021">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P69432" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003460" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13862" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947503" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128985" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1733" fbc:label="b1733" metaid="G_b1733">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1733">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P37794" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005783" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12198" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946231" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129687" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4266" fbc:label="b4266" metaid="G_b4266">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4266">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A9P9" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013971" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12540" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947109" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16132088" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3493" fbc:label="b3493" metaid="G_b3493">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3493">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AFJ7" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011407" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12230" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948009" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131365" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2987" fbc:label="b2987" metaid="G_b2987">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2987">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P43676" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009800" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12883" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947475" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130887" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0401" fbc:label="b0401" metaid="G_b0401">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0401">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AD99" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001394" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12168" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945042" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128386" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4141" fbc:label="b4141" metaid="G_b4141">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4141">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P39277" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013559" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12470" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948656" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131966" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1798" fbc:label="b1798" metaid="G_b1798">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1798">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P76249" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005984" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13505" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946157" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129752" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3662" fbc:label="b3662" metaid="G_b3662">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3662">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0ADL1" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011967" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11689" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948213" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:145698327" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1592" fbc:label="b1592" metaid="G_b1592">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1592">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P76175" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005317" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13848" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947179" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111303" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2842" fbc:label="b2842" metaid="G_b2842">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2842">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P37769" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009330" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12361" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947323" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130746" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4020" fbc:label="b4020" metaid="G_b4020">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4020">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AF43" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013143" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11919" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948521" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131846" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1985" fbc:label="b1985" metaid="G_b1985">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1985">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P76352" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006586" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13383" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946506" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:226524727" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1516" fbc:label="b1516" metaid="G_b1516">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1516">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P76142" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005063" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13809" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945418" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129475" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1513" fbc:label="b1513" metaid="G_b1513">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1513">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77257" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005056" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13806" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945680" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129472" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1514" fbc:label="b1514" metaid="G_b1514">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1514">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77672" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005059" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13807" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946105" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129473" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1515" fbc:label="b1515" metaid="G_b1515">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1515">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AFS1" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005061" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13808" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946264" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129474" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1518" fbc:label="b1518" metaid="G_b1518">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1518">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P64461" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005067" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13811" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946073" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129477" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3240" fbc:label="b3240" metaid="G_b3240">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3240">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P46481" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0010629" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12822" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947747" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131130" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3241" fbc:label="b3241" metaid="G_b3241">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3241">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P46482" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0010631" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12823" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947748" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131131" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1449" fbc:label="b1449" metaid="G_b1449">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1449">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P76113" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004834" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13772" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946012" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:226524714" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2245" fbc:label="b2245" metaid="G_b2245">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2245">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P76469" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007431" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG14083" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948054" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130180" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1448" fbc:label="b1448" metaid="G_b1448">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1448">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P76112" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004827" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13770" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946010" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129407" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3656" fbc:label="b3656" metaid="G_b3656">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3656">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P31434" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011951" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11685" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948169" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131527" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3883" fbc:label="b3883" metaid="G_b3883">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3883">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P32143" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012681" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11848" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948382" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111659" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3966" fbc:label="b3966" metaid="G_b3966">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3966">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P06129" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012987" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10126" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948468" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131804" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4098" fbc:label="b4098" metaid="G_b4098">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4098">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P16688" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013426" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10719" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948606" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131924" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3488" fbc:label="b3488" metaid="G_b3488">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3488">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P37627" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0011387" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12225" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948001" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131360" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1813" fbc:label="b1813" metaid="G_b1813">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1813">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P43337" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006035" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12693" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946330" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129767" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2166" fbc:label="b2166" metaid="G_b2166">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2166">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P30235" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007168" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11646" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946664" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130104" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1103" fbc:label="b1103" metaid="G_b1103">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1103">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0ACE7" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0003729" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12172" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948549" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:49176077" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4100" fbc:label="b4100" metaid="G_b4100">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4100">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P16686" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013430" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10717" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948619" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131926" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4101" fbc:label="b4101" metaid="G_b4101">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4101">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P16685" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013433" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10716" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948618" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131927" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4096" fbc:label="b4096" metaid="G_b4096">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4096">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P16679" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013421" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10721" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948612" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131922" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4099" fbc:label="b4099" metaid="G_b4099">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4099">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P16687" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013428" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10718" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948605" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131925" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4095" fbc:label="b4095" metaid="G_b4095">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4095">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P16689" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013419" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10722" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948613" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131921" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4092" fbc:label="b4092" metaid="G_b4092">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4092">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P16692" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013412" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10725" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948600" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131918" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2047" fbc:label="b2047" metaid="G_b2047">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2047">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P71241" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006785" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13575" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946583" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129987" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4106" fbc:label="b4106" metaid="G_b4106">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4106">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P16677" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013444" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10713" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948623" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131932" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4104" fbc:label="b4104" metaid="G_b4104">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4104">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P16683" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013437" />
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013439" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11283" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948625" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4105" fbc:label="b4105" metaid="G_b4105">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4105">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P16682" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013442" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10714" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948624" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131931" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0662" fbc:label="b0662" metaid="G_b0662">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0662">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P75728" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002265" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13658" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945261" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128645" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2906" fbc:label="b2906" metaid="G_b2906">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2906">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P25535" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009543" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11333" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947389" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130808" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1400" fbc:label="b1400" metaid="G_b1400">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1400">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77181" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004676" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13747" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945965" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129361" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2683" fbc:label="b2683" metaid="G_b2683">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2683">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P43667" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008831" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12940" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945111" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130595" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2682" fbc:label="b2682" metaid="G_b2682">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2682">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P76630" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0008829" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13528" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945093" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130594" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1821" fbc:label="b1821" metaid="G_b1821">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1821">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P76264" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006065" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG14012" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946341" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:162135903" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2164" fbc:label="b2164" metaid="G_b2164">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2164">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P33024" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007163" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12032" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946671" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130102" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1616" fbc:label="b1616" metaid="G_b1616">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1616">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0CE44" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005407" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11658" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947484" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129574" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1517" fbc:label="b1517" metaid="G_b1517">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1517">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P76143" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0005065" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13810" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946071" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129476" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0577" fbc:label="b0577" metaid="G_b0577">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0577">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AAT4" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001978" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12620" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946243" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128560" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0465" fbc:label="b0465" metaid="G_b0465">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0465">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77338" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0001613" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG14240" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945132" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128449" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3291" fbc:label="b3291" metaid="G_b3291">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3291">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A742" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0010790" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11180" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947787" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131170" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4159" fbc:label="b4159" metaid="G_b4159">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4159">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P39285" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013621" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12478" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948676" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131984" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2924" fbc:label="b2924" metaid="G_b2924">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2924">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0C0S1" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009595" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11160" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947416" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130825" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1330" fbc:label="b1330" metaid="G_b1330">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1330">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AEB5" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004462" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13924" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945898" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129291" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0808" fbc:label="b0808" metaid="G_b0808">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0808">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P75783" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002760" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG13320" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945935" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111173" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2247" fbc:label="b2247" metaid="G_b2247">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2247">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P77215" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0007436" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG14085" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945881" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:226524733" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b0597" fbc:label="b0597" metaid="G_b0597">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b0597">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A8Y8" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0002057" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11105" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945215" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16128580" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1870" fbc:label="b1870" metaid="G_b1870">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1870">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P76290" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0006237" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG14033" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/946380" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16129823" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3116" fbc:label="b3116" metaid="G_b3116">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3116">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AAD8" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0010247" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10991" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947629" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131009" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b2796" fbc:label="b2796" metaid="G_b2796">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b2796">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AAD6" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0009169" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12142" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/947264" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16130703" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b4093" fbc:label="b4093" metaid="G_b4093">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b4093">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P16691" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0013415" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG10724" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948599" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131919" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b3878" fbc:label="b3878" metaid="G_b3878">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b3878">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P32138" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0012666" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG11843" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/948376" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:16131718" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-      <fbc:geneProduct fbc:id="G_b1206" fbc:label="b1206" metaid="G_b1206">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#G_b1206">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/uniprot/P0AFR2" />
-                </rdf:Bag>
-              </bqbiol:is>
-              <bqbiol:isEncodedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/asap/ABE-0004051" />
-                  <rdf:li rdf:resource="http://identifiers.org/ecogene/EG12392" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigene/945770" />
-                  <rdf:li rdf:resource="http://identifiers.org/ncbigi/gi:90111235" />
-                </rdf:Bag>
-              </bqbiol:isEncodedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </fbc:geneProduct>
-    </fbc:listOfGeneProducts>
-    <groups:listOfGroups xmlns:groups="http://www.sbml.org/sbml/level3/version1/groups/version1">
-      <groups:group groups:id="g1" groups:kind="partonomy" groups:name="Cofactor and Prosthetic Group Biosynthesis" sboTerm="SBO:0000633">
-        <groups:listOfMembers>
-          <groups:member groups:idRef="R_ALATA_D2" />
-          <groups:member groups:idRef="R_SHCHD2" />
-          <groups:member groups:idRef="R_CPPPGO" />
-          <groups:member groups:idRef="R_GTHOr" />
-          <groups:member groups:idRef="R_ALATA_L2" />
-          <groups:member groups:idRef="R_APRAUR" />
-          <groups:member groups:idRef="R_DB4PS" />
-          <groups:member groups:idRef="R_RBFK" />
-          <groups:member groups:idRef="R_ACP1_FMN" />
-          <groups:member groups:idRef="R_RBFSb" />
-          <groups:member groups:idRef="R_DMATT" />
-          <groups:member groups:idRef="R_GRTT" />
-          <groups:member groups:idRef="R_UPP3S" />
-          <groups:member groups:idRef="R_UPPDC1" />
-          <groups:member groups:idRef="R_TMPPP" />
-          <groups:member groups:idRef="R_FMNAT" />
-          <groups:member groups:idRef="R_NADDP" />
-          <groups:member groups:idRef="R_NMNAT" />
-          <groups:member groups:idRef="R_HMPK1" />
-          <groups:member groups:idRef="R_PMDPHT" />
-          <groups:member groups:idRef="R_RBFSa" />
-          <groups:member groups:idRef="R_UDCPDPS" />
-          <groups:member groups:idRef="R_PPCDC" />
-          <groups:member groups:idRef="R_PYDXNK" />
-          <groups:member groups:idRef="R_PYAM5PO" />
-          <groups:member groups:idRef="R_OHPBAT" />
-          <groups:member groups:idRef="R_GLUTRR" />
-          <groups:member groups:idRef="R_HEMEOS" />
-          <groups:member groups:idRef="R_G1SAT" />
-          <groups:member groups:idRef="R_DMQMT" />
-          <groups:member groups:idRef="R_ICHORS_copy1" />
-          <groups:member groups:idRef="R_DNMPPA" />
-          <groups:member groups:idRef="R_HPPK2" />
-          <groups:member groups:idRef="R_PTPATi" />
-          <groups:member groups:idRef="R_DXPRIi" />
-          <groups:member groups:idRef="R_OPHBDC" />
-          <groups:member groups:idRef="R_OHPHM" />
-          <groups:member groups:idRef="R_NADK" />
-          <groups:member groups:idRef="R_ICHORS_copy2" />
-          <groups:member groups:idRef="R_SUCBZS" />
-          <groups:member groups:idRef="R_DHBD" />
-          <groups:member groups:idRef="R_ICHORT" />
-          <groups:member groups:idRef="R_PYDXPP" />
-          <groups:member groups:idRef="R_PDXPP" />
-          <groups:member groups:idRef="R_DXPS" />
-          <groups:member groups:idRef="R_CDPMEK" />
-          <groups:member groups:idRef="R_MECDPS" />
-          <groups:member groups:idRef="R_PYDXK" />
-          <groups:member groups:idRef="R_GTPCII2" />
-          <groups:member groups:idRef="R_NNDPR" />
-          <groups:member groups:idRef="R_RZ5PP" />
-          <groups:member groups:idRef="R_OCTDPS" />
-          <groups:member groups:idRef="R_SERASr" />
-          <groups:member groups:idRef="R_FADRx" />
-          <groups:member groups:idRef="R_GTPDPK" />
-          <groups:member groups:idRef="R_NADN" />
-          <groups:member groups:idRef="R_FCLT" />
-          <groups:member groups:idRef="R_HBZOPT" />
-          <groups:member groups:idRef="R_PNTK" />
-          <groups:member groups:idRef="R_DPCOAK" />
-          <groups:member groups:idRef="R_HETZK" />
-          <groups:member groups:idRef="R_FMNRx2" />
-          <groups:member groups:idRef="R_ACPS1" />
-          <groups:member groups:idRef="R_ADCS" />
-          <groups:member groups:idRef="R_ADCL" />
-          <groups:member groups:idRef="R_DMPPS" />
-          <groups:member groups:idRef="R_IPDPS" />
-          <groups:member groups:idRef="R_NMNDA" />
-          <groups:member groups:idRef="R_NNAM" />
-          <groups:member groups:idRef="R_ASP1DC" />
-          <groups:member groups:idRef="R_ACBIPGT" />
-          <groups:member groups:idRef="R_ADOCBLS" />
-          <groups:member groups:idRef="R_ADOCBIK" />
-          <groups:member groups:idRef="R_TMPK" />
-          <groups:member groups:idRef="R_ENTCS" />
-          <groups:member groups:idRef="R_TMK" />
-          <groups:member groups:idRef="R_DHPPDA2" />
-          <groups:member groups:idRef="R_DBTS" />
-          <groups:member groups:idRef="R_GLUCYS" />
-          <groups:member groups:idRef="R_NADS1" />
-          <groups:member groups:idRef="R_DXYLK" />
-          <groups:member groups:idRef="R_PDX5PS" />
-          <groups:member groups:idRef="R_PPBNGS" />
-          <groups:member groups:idRef="R_PPNCL2" />
-          <groups:member groups:idRef="R_MOHMT" />
-          <groups:member groups:idRef="R_CHRPL" />
-          <groups:member groups:idRef="R_PMPK" />
-          <groups:member groups:idRef="R_BSORy" />
-          <groups:member groups:idRef="R_BSORx" />
-          <groups:member groups:idRef="R_GTPCI" />
-          <groups:member groups:idRef="R_DHFS" />
-          <groups:member groups:idRef="R_ASPO3" />
-          <groups:member groups:idRef="R_ASPO5" />
-          <groups:member groups:idRef="R_ASPO4" />
-          <groups:member groups:idRef="R_ASPO6" />
-          <groups:member groups:idRef="R_DHPS2" />
-          <groups:member groups:idRef="R_QULNS" />
-          <groups:member groups:idRef="R_DHBSH" />
-          <groups:member groups:idRef="R_FE3Ri" />
-          <groups:member groups:idRef="R_FLVR" />
-          <groups:member groups:idRef="R_CBLAT" />
-          <groups:member groups:idRef="R_TDP" />
-          <groups:member groups:idRef="R_PPGPPDP" />
-          <groups:member groups:idRef="R_GDPDPK" />
-          <groups:member groups:idRef="R_DNTPPA" />
-          <groups:member groups:idRef="R_DHPTPE" />
-          <groups:member groups:idRef="R_FALDH2" />
-          <groups:member groups:idRef="R_CBIAT" />
-          <groups:member groups:idRef="R_FALGTHLs" />
-          <groups:member groups:idRef="R_HMBS" />
-          <groups:member groups:idRef="R_HYPOE" />
-          <groups:member groups:idRef="R_MEPCT" />
-          <groups:member groups:idRef="R_NADPPPS" />
-          <groups:member groups:idRef="R_GTPDPDP" />
-          <groups:member groups:idRef="R_NMNN" />
-          <groups:member groups:idRef="R_NNDMBRT" />
-          <groups:member groups:idRef="R_E4PD" />
-          <groups:member groups:idRef="R_DPR" />
-          <groups:member groups:idRef="R_NAMNPP" />
-          <groups:member groups:idRef="R_DHFR" />
-          <groups:member groups:idRef="R_AMAOTr" />
-          <groups:member groups:idRef="R_PANTS" />
-          <groups:member groups:idRef="R_PERD" />
-          <groups:member groups:idRef="R_PYDAMK" />
-          <groups:member groups:idRef="R_FADRx2" />
-          <groups:member groups:idRef="R_GTHS" />
-          <groups:member groups:idRef="R_PPPGO" />
-          <groups:member groups:idRef="R_CPPPGO2" />
-          <groups:member groups:idRef="R_SHCHF" />
-          <groups:member groups:idRef="R_SUCBZL" />
-          <groups:member groups:idRef="R_IPDDI" />
-          <groups:member groups:idRef="R_UPP3MT" />
-          <groups:member groups:idRef="R_TPRDCOAS" />
-          <groups:member groups:idRef="R_FLVRx" />
-          <groups:member groups:idRef="R_FMNRx" />
-          <groups:member groups:idRef="R_DHBS" />
-          <groups:member groups:idRef="R_OMBZLM" />
-          <groups:member groups:idRef="R_SFGTHi" />
-          <groups:member groups:idRef="R_DHNAOT4" />
-          <groups:member groups:idRef="R_AMPMS2" />
-          <groups:member groups:idRef="R_PPPGO3" />
-          <groups:member groups:idRef="R_PDX5POi" />
-          <groups:member groups:idRef="R_PDX5PO2" />
-          <groups:member groups:idRef="R_5DOAN" />
-          <groups:member groups:idRef="R_GTHRDHpp" />
-          <groups:member groups:idRef="R_OMMBLHX3" />
-          <groups:member groups:idRef="R_OPHHX3" />
-          <groups:member groups:idRef="R_AMMQLT8" />
-          <groups:member groups:idRef="R_2MAHMP" />
-          <groups:member groups:idRef="R_MALCOAMT" />
-          <groups:member groups:idRef="R_OGMEACPS" />
-          <groups:member groups:idRef="R_OGMEACPR" />
-          <groups:member groups:idRef="R_OPMEACPS" />
-          <groups:member groups:idRef="R_MPTAT" />
-          <groups:member groups:idRef="R_MOADSUx" />
-          <groups:member groups:idRef="R_ICYSDS" />
-          <groups:member groups:idRef="R_I4FE4SR" />
-          <groups:member groups:idRef="R_S2FE2ST" />
-          <groups:member groups:idRef="R_BMOCOS" />
-          <groups:member groups:idRef="R_BWCOS" />
-          <groups:member groups:idRef="R_BWCOGDS1" />
-          <groups:member groups:idRef="R_BWCOGDS2" />
-          <groups:member groups:idRef="R_DHNPTE" />
-          <groups:member groups:idRef="R_DHMPTR" />
-          <groups:member groups:idRef="R_I2FE2SS" />
-          <groups:member groups:idRef="R_I2FE2ST" />
-          <groups:member groups:idRef="R_I2FE2SS2" />
-          <groups:member groups:idRef="R_I4FE4ST" />
-          <groups:member groups:idRef="R_S4FE4ST" />
-          <groups:member groups:idRef="R_S2FE2SS2" />
-          <groups:member groups:idRef="R_BTS5" />
-          <groups:member groups:idRef="R_CCGS" />
-          <groups:member groups:idRef="R_CDGR" />
-          <groups:member groups:idRef="R_CPH4S" />
-          <groups:member groups:idRef="R_SHCHCS3" />
-          <groups:member groups:idRef="R_SEPHCHCS" />
-          <groups:member groups:idRef="R_DHNCOAS" />
-          <groups:member groups:idRef="R_DHNCOAT" />
-          <groups:member groups:idRef="R_FESD1s" />
-          <groups:member groups:idRef="R_I2FE2SR" />
-          <groups:member groups:idRef="R_TYRL" />
-          <groups:member groups:idRef="R_THZPSN3" />
-          <groups:member groups:idRef="R_MOCDS" />
-          <groups:member groups:idRef="R_BMOGDS1" />
-          <groups:member groups:idRef="R_MPTS" />
-          <groups:member groups:idRef="R_MOCOS" />
-          <groups:member groups:idRef="R_BMOGDS2" />
-          <groups:member groups:idRef="R_FESD2s" />
-          <groups:member groups:idRef="R_S2FE2SR" />
-          <groups:member groups:idRef="R_OPMEACPD" />
-          <groups:member groups:idRef="R_EPMEACPR" />
-          <groups:member groups:idRef="R_AOXSr2" />
-          <groups:member groups:idRef="R_SCYSDS" />
-          <groups:member groups:idRef="R_S2FE2SS" />
-          <groups:member groups:idRef="R_S4FE4SR" />
-          <groups:member groups:idRef="R_OGMEACPD" />
-          <groups:member groups:idRef="R_EGMEACPR" />
-          <groups:member groups:idRef="R_OPMEACPR" />
-          <groups:member groups:idRef="R_PMEACPE" />
-          <groups:member groups:idRef="R_MECDPDH5" />
-          <groups:member groups:idRef="R_CDGS" />
-          <groups:member groups:idRef="R_FESR" />
-          <groups:member groups:idRef="R_GDPTPDP" />
-          <groups:member groups:idRef="R_MPTSS" />
-          <groups:member groups:idRef="R_CPMPS" />
-          <groups:member groups:idRef="R_LIPOCT" />
-          <groups:member groups:idRef="R_LIPOS" />
-          <groups:member groups:idRef="R_OCTNLL" />
-          <groups:member groups:idRef="R_LIPATPT" />
-          <groups:member groups:idRef="R_LIPAMPL" />
-          <groups:member groups:idRef="R_MOGDS" />
-          <groups:member groups:idRef="R_WCOS" />
-          <groups:member groups:idRef="R_ThDPAT" />
-          <groups:member groups:idRef="R_DHNPA2r" />
-          <groups:member groups:idRef="R_OMPHHXy" />
-          <groups:member groups:idRef="R_4ABZGLUH" />
-          <groups:member groups:idRef="R_OMMBLHXy" />
-          <groups:member groups:idRef="R_OPHHXy" />
-          <groups:member groups:idRef="R_ACP1p" />
-          <groups:member groups:idRef="R_CXSAMS" />
-        </groups:listOfMembers>
-      </groups:group>
-      <groups:group groups:id="g2" groups:kind="partonomy" groups:name="Purine and Pyrimidine Biosynthesis" sboTerm="SBO:0000633">
-        <groups:listOfMembers>
-          <groups:member groups:idRef="R_DHORD5" />
-          <groups:member groups:idRef="R_IMPC" />
-          <groups:member groups:idRef="R_IMPD" />
-          <groups:member groups:idRef="R_DHORTS" />
-          <groups:member groups:idRef="R_OMPDC" />
-          <groups:member groups:idRef="R_ORPT" />
-          <groups:member groups:idRef="R_AIRC3" />
-          <groups:member groups:idRef="R_ADSL2r" />
-          <groups:member groups:idRef="R_DHORD2" />
-          <groups:member groups:idRef="R_GMPS2" />
-          <groups:member groups:idRef="R_CTPS2" />
-          <groups:member groups:idRef="R_ADSS" />
-          <groups:member groups:idRef="R_ASPCT" />
-          <groups:member groups:idRef="R_AIRC2" />
-          <groups:member groups:idRef="R_GART" />
-          <groups:member groups:idRef="R_GLUPRT" />
-          <groups:member groups:idRef="R_GMPR" />
-          <groups:member groups:idRef="R_GARFT" />
-          <groups:member groups:idRef="R_PRAGSr" />
-          <groups:member groups:idRef="R_PRFGS" />
-          <groups:member groups:idRef="R_GMPS" />
-          <groups:member groups:idRef="R_PRASCSi" />
-          <groups:member groups:idRef="R_YUMPS" />
-          <groups:member groups:idRef="R_ADSL1r" />
-          <groups:member groups:idRef="R_AICART" />
-          <groups:member groups:idRef="R_PRAIS" />
-          <groups:member groups:idRef="R_DHORDfum" />
-          <groups:member groups:idRef="R_PSURIK" />
-          <groups:member groups:idRef="R_PNSPA" />
-        </groups:listOfMembers>
-      </groups:group>
-      <groups:group groups:id="g3" groups:kind="partonomy" groups:name="Alternate Carbon Metabolism" sboTerm="SBO:0000633">
-        <groups:listOfMembers>
-          <groups:member groups:idRef="R_GLYCTO2" />
-          <groups:member groups:idRef="R_GLYCTO3" />
-          <groups:member groups:idRef="R_GLYCTO4" />
-          <groups:member groups:idRef="R_MAN6PI" />
-          <groups:member groups:idRef="R_XYLK" />
-          <groups:member groups:idRef="R_RBK" />
-          <groups:member groups:idRef="R_GLYK" />
-          <groups:member groups:idRef="R_PPM" />
-          <groups:member groups:idRef="R_A5PISO" />
-          <groups:member groups:idRef="R_G6PDA" />
-          <groups:member groups:idRef="R_ALDD2y" />
-          <groups:member groups:idRef="R_RMI" />
-          <groups:member groups:idRef="R_MNNH" />
-          <groups:member groups:idRef="R_ALTRH" />
-          <groups:member groups:idRef="R_GUI1" />
-          <groups:member groups:idRef="R_HEX7" />
-          <groups:member groups:idRef="R_HEX4" />
-          <groups:member groups:idRef="R_RBK_L1" />
-          <groups:member groups:idRef="R_RBP4E" />
-          <groups:member groups:idRef="R_UGLT" />
-          <groups:member groups:idRef="R_DDGLK" />
-          <groups:member groups:idRef="R_XYLI2" />
-          <groups:member groups:idRef="R_PMANM" />
-          <groups:member groups:idRef="R_UDPG4E" />
-          <groups:member groups:idRef="R_LACZ" />
-          <groups:member groups:idRef="R_TRE6PH" />
-          <groups:member groups:idRef="R_XYLI1" />
-          <groups:member groups:idRef="R_ALDD4" />
-          <groups:member groups:idRef="R_G3PT" />
-          <groups:member groups:idRef="R_CINNDO" />
-          <groups:member groups:idRef="R_DHPPD" />
-          <groups:member groups:idRef="R_DHCIND" />
-          <groups:member groups:idRef="R_LCARS" />
-          <groups:member groups:idRef="R_ALCD19" />
-          <groups:member groups:idRef="R_RMPA" />
-          <groups:member groups:idRef="R_SBTPD" />
-          <groups:member groups:idRef="R_PFK_2" />
-          <groups:member groups:idRef="R_GLTPD" />
-          <groups:member groups:idRef="R_TGBPA" />
-          <groups:member groups:idRef="R_MANAO" />
-          <groups:member groups:idRef="R_TAGURr" />
-          <groups:member groups:idRef="R_PGLYCP" />
-          <groups:member groups:idRef="R_TARTD" />
-          <groups:member groups:idRef="R_GLCRAL" />
-          <groups:member groups:idRef="R_DKGLCNR2y" />
-          <groups:member groups:idRef="R_2DGULRy" />
-          <groups:member groups:idRef="R_AMANK" />
-          <groups:member groups:idRef="R_ACNML" />
-          <groups:member groups:idRef="R_DDGALK" />
-          <groups:member groups:idRef="R_AB6PGH" />
-          <groups:member groups:idRef="R_AMALT1" />
-          <groups:member groups:idRef="R_MLTP2" />
-          <groups:member groups:idRef="R_PACCOAL" />
-          <groups:member groups:idRef="R_TRE6PS" />
-          <groups:member groups:idRef="R_TREH" />
-          <groups:member groups:idRef="R_ACACCT" />
-          <groups:member groups:idRef="R_BUTCT" />
-          <groups:member groups:idRef="R_2DGULRx" />
-          <groups:member groups:idRef="R_ADNUC" />
-          <groups:member groups:idRef="R_PGMT" />
-          <groups:member groups:idRef="R_FRUK" />
-          <groups:member groups:idRef="R_KG6PDC" />
-          <groups:member groups:idRef="R_X5PL3E" />
-          <groups:member groups:idRef="R_DOGULNR" />
-          <groups:member groups:idRef="R_MLTG3" />
-          <groups:member groups:idRef="R_DKGLCNR1" />
-          <groups:member groups:idRef="R_DHAPT" />
-          <groups:member groups:idRef="R_DDPGALA" />
-          <groups:member groups:idRef="R_IDOND" />
-          <groups:member groups:idRef="R_IDOND2" />
-          <groups:member groups:idRef="R_HPYRRy" />
-          <groups:member groups:idRef="R_AGDC" />
-          <groups:member groups:idRef="R_TRE6PP" />
-          <groups:member groups:idRef="R_ARAI" />
-          <groups:member groups:idRef="R_M1PD" />
-          <groups:member groups:idRef="R_G3PD2" />
-          <groups:member groups:idRef="R_GALS3" />
-          <groups:member groups:idRef="R_FCI" />
-          <groups:member groups:idRef="R_FCLK" />
-          <groups:member groups:idRef="R_FCLPA" />
-          <groups:member groups:idRef="R_ACCOAL" />
-          <groups:member groups:idRef="R_OP4ENH" />
-          <groups:member groups:idRef="R_HOPNTAL" />
-          <groups:member groups:idRef="R_3HPPPNH" />
-          <groups:member groups:idRef="R_HPYRRx" />
-          <groups:member groups:idRef="R_GLYCDx" />
-          <groups:member groups:idRef="R_ASCBPL" />
-          <groups:member groups:idRef="R_HPPPNDO" />
-          <groups:member groups:idRef="R_DHCINDO" />
-          <groups:member groups:idRef="R_HKNDDH" />
-          <groups:member groups:idRef="R_HKNTDH" />
-          <groups:member groups:idRef="R_MANPGH" />
-          <groups:member groups:idRef="R_URDGLYCD" />
-          <groups:member groups:idRef="R_AMANAPEr" />
-          <groups:member groups:idRef="R_ACM6PH" />
-          <groups:member groups:idRef="R_CYTDH" />
-          <groups:member groups:idRef="R_TAUDO" />
-          <groups:member groups:idRef="R_MLTG2" />
-          <groups:member groups:idRef="R_MLTG1" />
-          <groups:member groups:idRef="R_AMALT3" />
-          <groups:member groups:idRef="R_MLTP3" />
-          <groups:member groups:idRef="R_PPCSCT" />
-          <groups:member groups:idRef="R_MCITL2" />
-          <groups:member groups:idRef="R_PTA2" />
-          <groups:member groups:idRef="R_MCITS" />
-          <groups:member groups:idRef="R_PPAKr" />
-          <groups:member groups:idRef="R_PPM2" />
-          <groups:member groups:idRef="R_GLCRD" />
-          <groups:member groups:idRef="R_PPPNDO" />
-          <groups:member groups:idRef="R_LCADi" />
-          <groups:member groups:idRef="R_3HCINNMH" />
-          <groups:member groups:idRef="R_PHYTSpp" />
-          <groups:member groups:idRef="R_DRPA" />
-          <groups:member groups:idRef="R_TREHpp" />
-          <groups:member groups:idRef="R_TRSARr" />
-          <groups:member groups:idRef="R_LYXI" />
-          <groups:member groups:idRef="R_URIH" />
-          <groups:member groups:idRef="R_MALDDH" />
-          <groups:member groups:idRef="R_ALKP" />
-          <groups:member groups:idRef="R_GGGABADr" />
-          <groups:member groups:idRef="R_MALTATr" />
-          <groups:member groups:idRef="R_GGGABAH" />
-          <groups:member groups:idRef="R_FRULYSK" />
-          <groups:member groups:idRef="R_GALM2pp" />
-          <groups:member groups:idRef="R_DAPAL" />
-          <groups:member groups:idRef="R_LACZpp" />
-          <groups:member groups:idRef="R_UDPGALPpp" />
-          <groups:member groups:idRef="R_UACGAMPpp" />
-          <groups:member groups:idRef="R_UACGALPpp" />
-          <groups:member groups:idRef="R_UGLCURPpp" />
-          <groups:member groups:idRef="R_GUR1PPpp" />
-          <groups:member groups:idRef="R_ACGAL1PPpp" />
-          <groups:member groups:idRef="R_ARABDI" />
-          <groups:member groups:idRef="R_R5PPpp" />
-          <groups:member groups:idRef="R_AAMYL" />
-          <groups:member groups:idRef="R_AAMYLpp" />
-          <groups:member groups:idRef="R_MN6PP" />
-          <groups:member groups:idRef="R_3KGK" />
-          <groups:member groups:idRef="R_F6PP" />
-          <groups:member groups:idRef="R_R1PK" />
-          <groups:member groups:idRef="R_R15BPK" />
-          <groups:member groups:idRef="R_GGPTRCS" />
-          <groups:member groups:idRef="R_FRULYSDG" />
-          <groups:member groups:idRef="R_GAL1PPpp" />
-          <groups:member groups:idRef="R_ALLPI" />
-          <groups:member groups:idRef="R_ALLK" />
-          <groups:member groups:idRef="R_ALLULPE" />
-          <groups:member groups:idRef="R_PPDOy" />
-          <groups:member groups:idRef="R_GNK" />
-          <groups:member groups:idRef="R_RMK" />
-          <groups:member groups:idRef="R_GALCTD" />
-          <groups:member groups:idRef="R_MLTG4" />
-          <groups:member groups:idRef="R_DKGLCNR2x" />
-          <groups:member groups:idRef="R_MCITD" />
-          <groups:member groups:idRef="R_GLCATr" />
-          <groups:member groups:idRef="R_G2PPpp" />
-          <groups:member groups:idRef="R_GALKr" />
-          <groups:member groups:idRef="R_OBTFL" />
-          <groups:member groups:idRef="R_MMCD" />
-          <groups:member groups:idRef="R_AMALT2" />
-          <groups:member groups:idRef="R_MLTP1" />
-          <groups:member groups:idRef="R_UDPGPpp" />
-          <groups:member groups:idRef="R_ALDD3y" />
-          <groups:member groups:idRef="R_R5PP" />
-          <groups:member groups:idRef="R_HXCT" />
-          <groups:member groups:idRef="R_GALCTND" />
-          <groups:member groups:idRef="R_AMALT4" />
-          <groups:member groups:idRef="R_HPYRI" />
-          <groups:member groups:idRef="R_ACGAM1PPpp" />
-          <groups:member groups:idRef="R_GGPTRCO" />
-          <groups:member groups:idRef="R_GUI2" />
-          <groups:member groups:idRef="R_MLTG5" />
-          <groups:member groups:idRef="R_2DOXG6PP" />
-          <groups:member groups:idRef="R_MICITDr" />
-          <groups:member groups:idRef="R_BGLA1" />
-          <groups:member groups:idRef="R_FRULYSE" />
-          <groups:member groups:idRef="R_OXCDC" />
-          <groups:member groups:idRef="R_DTARTD" />
-          <groups:member groups:idRef="R_GALCTLO" />
-          <groups:member groups:idRef="R_XYLK2" />
-          <groups:member groups:idRef="R_CDGUNPD" />
-          <groups:member groups:idRef="R_REPHACCOAI" />
-          <groups:member groups:idRef="R_FORCT" />
-          <groups:member groups:idRef="R_PACCOAE" />
-          <groups:member groups:idRef="R_OXDHCOAT" />
-          <groups:member groups:idRef="R_HADPCOADH3" />
-          <groups:member groups:idRef="R_OXCOAHDH" />
-          <groups:member groups:idRef="R_DHACOAH" />
-          <groups:member groups:idRef="R_ALDD19xr" />
-          <groups:member groups:idRef="R_MMM" />
-          <groups:member groups:idRef="R_3OXCOAT" />
-          <groups:member groups:idRef="R_2DGULRGx" />
-          <groups:member groups:idRef="R_2DGULRGy" />
-          <groups:member groups:idRef="R_13PPDH2" />
-          <groups:member groups:idRef="R_G2PP" />
-          <groups:member groups:idRef="R_DXYLTD" />
-          <groups:member groups:idRef="R_2DDARAA" />
-          <groups:member groups:idRef="R_GNP" />
-          <groups:member groups:idRef="R_METGLCUR" />
-          <groups:member groups:idRef="R_SQVOSI" />
-          <groups:member groups:idRef="R_6D6SPA" />
-          <groups:member groups:idRef="R_2HESR" />
-          <groups:member groups:idRef="R_CHOLID" />
-          <groups:member groups:idRef="R_PHDA" />
-          <groups:member groups:idRef="R_PACOAT" />
-          <groups:member groups:idRef="R_DHPTDNR" />
-          <groups:member groups:idRef="R_DHPTDNRN" />
-          <groups:member groups:idRef="R_PCNO" />
-          <groups:member groups:idRef="R_HPACOAT" />
-          <groups:member groups:idRef="R_DC6PDA" />
-          <groups:member groups:idRef="R_5DGLCNR" />
-          <groups:member groups:idRef="R_5DKGR" />
-          <groups:member groups:idRef="R_CURR" />
-          <groups:member groups:idRef="R_LKDRA" />
-          <groups:member groups:idRef="R_E4PP" />
-          <groups:member groups:idRef="R_RU5PP" />
-          <groups:member groups:idRef="R_6D6SFK" />
-          <groups:member groups:idRef="R_3SLAR" />
-          <groups:member groups:idRef="R_CPL" />
-          <groups:member groups:idRef="R_INOSTO" />
-          <groups:member groups:idRef="R_HPYRP" />
-          <groups:member groups:idRef="R_ARMEPNS" />
-          <groups:member groups:idRef="R_RPNTPH" />
-          <groups:member groups:idRef="R_PRCPD" />
-          <groups:member groups:idRef="R_F1PP" />
-          <groups:member groups:idRef="R_3HPADHi" />
-          <groups:member groups:idRef="R_2HPTCOAT" />
-          <groups:member groups:idRef="R_MC6PH" />
-          <groups:member groups:idRef="R_GAPP" />
-          <groups:member groups:idRef="R_DHCURR" />
-          <groups:member groups:idRef="R_RHMND" />
-          <groups:member groups:idRef="R_SQGH" />
-          <groups:member groups:idRef="R_LCARSyi" />
-        </groups:listOfMembers>
-      </groups:group>
-      <groups:group groups:id="g4" groups:kind="partonomy" groups:name="Pentose Phosphate Pathway" sboTerm="SBO:0000633">
-        <groups:listOfMembers>
-          <groups:member groups:idRef="R_PFK_3" />
-          <groups:member groups:idRef="R_EDA" />
-          <groups:member groups:idRef="R_PGL" />
-          <groups:member groups:idRef="R_RPE" />
-          <groups:member groups:idRef="R_TALA" />
-          <groups:member groups:idRef="R_TKT1" />
-          <groups:member groups:idRef="R_EDD" />
-          <groups:member groups:idRef="R_GND" />
-          <groups:member groups:idRef="R_G6PDH2r" />
-          <groups:member groups:idRef="R_FBA3" />
-          <groups:member groups:idRef="R_TKT2" />
-          <groups:member groups:idRef="R_RPI" />
-        </groups:listOfMembers>
-      </groups:group>
-      <groups:group groups:id="g5" groups:kind="partonomy" groups:name="Tyrosine, Tryptophan, and Phenylalanine Metabolism" sboTerm="SBO:0000633">
-        <groups:listOfMembers>
-          <groups:member groups:idRef="R_TRPS2" />
-          <groups:member groups:idRef="R_SHK3Dr" />
-          <groups:member groups:idRef="R_PSCVT" />
-          <groups:member groups:idRef="R_ANS" />
-          <groups:member groups:idRef="R_ANPRT" />
-          <groups:member groups:idRef="R_CHORM" />
-          <groups:member groups:idRef="R_CHORS" />
-          <groups:member groups:idRef="R_IGPS" />
-          <groups:member groups:idRef="R_TRPAS2" />
-          <groups:member groups:idRef="R_DHQTi" />
-          <groups:member groups:idRef="R_TRPS3" />
-          <groups:member groups:idRef="R_PPNDH" />
-          <groups:member groups:idRef="R_DDPA" />
-          <groups:member groups:idRef="R_PHETA1" />
-          <groups:member groups:idRef="R_PPND" />
-          <groups:member groups:idRef="R_TRPS1" />
-          <groups:member groups:idRef="R_ACANTHAT" />
-          <groups:member groups:idRef="R_TYRPpp" />
-          <groups:member groups:idRef="R_PRAIi" />
-          <groups:member groups:idRef="R_TYRTA" />
-          <groups:member groups:idRef="R_SHKK" />
-          <groups:member groups:idRef="R_DHQS" />
-          <groups:member groups:idRef="R_QUINDHyi" />
-          <groups:member groups:idRef="R_QUINDH" />
-        </groups:listOfMembers>
-      </groups:group>
-      <groups:group groups:id="g6" groups:kind="partonomy" groups:name="Oxidative Phosphorylation" sboTerm="SBO:0000633">
-        <groups:listOfMembers>
-          <groups:member groups:idRef="R_G3PD5" />
-          <groups:member groups:idRef="R_POX" />
-          <groups:member groups:idRef="R_G3PD7" />
-          <groups:member groups:idRef="R_NADH9" />
-          <groups:member groups:idRef="R_NADH10" />
-          <groups:member groups:idRef="R_DMSOR1" />
-          <groups:member groups:idRef="R_DMSOR2" />
-          <groups:member groups:idRef="R_G3PD6" />
-          <groups:member groups:idRef="R_CRNBTCT" />
-          <groups:member groups:idRef="R_CRNCBCT" />
-          <groups:member groups:idRef="R_CRNCDH" />
-          <groups:member groups:idRef="R_TMAOR1" />
-          <groups:member groups:idRef="R_TMAOR2" />
-          <groups:member groups:idRef="R_TRDR" />
-          <groups:member groups:idRef="R_NADTRHD" />
-          <groups:member groups:idRef="R_NTRIR2x" />
-          <groups:member groups:idRef="R_NADH5" />
-          <groups:member groups:idRef="R_NO3R2pp" />
-          <groups:member groups:idRef="R_THD2pp" />
-          <groups:member groups:idRef="R_TMAOR1pp" />
-          <groups:member groups:idRef="R_TMAOR2pp" />
-          <groups:member groups:idRef="R_DMSOR1pp" />
-          <groups:member groups:idRef="R_CYTBDpp" />
-          <groups:member groups:idRef="R_CYTBD2pp" />
-          <groups:member groups:idRef="R_ATPS4rpp" />
-          <groups:member groups:idRef="R_GLCDpp" />
-          <groups:member groups:idRef="R_HYD2pp" />
-          <groups:member groups:idRef="R_PPK2" />
-          <groups:member groups:idRef="R_L_LACD3" />
-          <groups:member groups:idRef="R_L_LACD2" />
-          <groups:member groups:idRef="R_NADPHQR2" />
-          <groups:member groups:idRef="R_NADPHQR3" />
-          <groups:member groups:idRef="R_NADPHQR4" />
-          <groups:member groups:idRef="R_PPK" />
-          <groups:member groups:idRef="R_CRNCAR" />
-          <groups:member groups:idRef="R_DMSOR2pp" />
-          <groups:member groups:idRef="R_HYD3pp" />
-          <groups:member groups:idRef="R_NO3R1pp" />
-          <groups:member groups:idRef="R_LDH_D2" />
-          <groups:member groups:idRef="R_QMO2" />
-          <groups:member groups:idRef="R_QMO3" />
-          <groups:member groups:idRef="R_HYD1pp" />
-          <groups:member groups:idRef="R_CYTBO3_4pp" />
-          <groups:member groups:idRef="R_SUCDi" />
-          <groups:member groups:idRef="R_NADH16pp" />
-          <groups:member groups:idRef="R_NADH18pp" />
-          <groups:member groups:idRef="R_CTBTCAL2" />
-          <groups:member groups:idRef="R_CRNDCAL2" />
-          <groups:member groups:idRef="R_CRNCAL2" />
-          <groups:member groups:idRef="R_NADH17pp" />
-          <groups:member groups:idRef="R_FDH4pp" />
-          <groups:member groups:idRef="R_FDH5pp" />
-        </groups:listOfMembers>
-      </groups:group>
-      <groups:group groups:id="g7" groups:kind="partonomy" groups:name="Valine, Leucine, and Isoleucine Metabolism" sboTerm="SBO:0000633">
-        <groups:listOfMembers>
-          <groups:member groups:idRef="R_LEUTAi" />
-          <groups:member groups:idRef="R_IPPMIb" />
-          <groups:member groups:idRef="R_ACHBS" />
-          <groups:member groups:idRef="R_ACLS" />
-          <groups:member groups:idRef="R_ILETA" />
-          <groups:member groups:idRef="R_VALTA" />
-          <groups:member groups:idRef="R_DHAD2" />
-          <groups:member groups:idRef="R_IPMD" />
-          <groups:member groups:idRef="R_DHAD1" />
-          <groups:member groups:idRef="R_IPPMIa" />
-          <groups:member groups:idRef="R_KARA1" />
-          <groups:member groups:idRef="R_KARA2" />
-          <groups:member groups:idRef="R_IPPS" />
-          <groups:member groups:idRef="R_OMCDC" />
-          <groups:member groups:idRef="R_THRD_L" />
-          <groups:member groups:idRef="R_VPAMTr" />
-        </groups:listOfMembers>
-      </groups:group>
-      <groups:group groups:id="g8" groups:kind="partonomy" groups:name="Arginine and Proline Metabolism" sboTerm="SBO:0000633">
-        <groups:listOfMembers>
-          <groups:member groups:idRef="R_G5SD" />
-          <groups:member groups:idRef="R_PTRCTA" />
-          <groups:member groups:idRef="R_ADMDC" />
-          <groups:member groups:idRef="R_AGMT" />
-          <groups:member groups:idRef="R_ARGDC" />
-          <groups:member groups:idRef="R_ARGSS" />
-          <groups:member groups:idRef="R_AGPR" />
-          <groups:member groups:idRef="R_SPMS" />
-          <groups:member groups:idRef="R_ABTA" />
-          <groups:member groups:idRef="R_SSALx" />
-          <groups:member groups:idRef="R_AST" />
-          <groups:member groups:idRef="R_SGDS" />
-          <groups:member groups:idRef="R_GSPMDA" />
-          <groups:member groups:idRef="R_GSPMDS" />
-          <groups:member groups:idRef="R_ACODA" />
-          <groups:member groups:idRef="R_P5CD" />
-          <groups:member groups:idRef="R_SPMDAT1" />
-          <groups:member groups:idRef="R_SPMDAT2" />
-          <groups:member groups:idRef="R_ARGSL" />
-          <groups:member groups:idRef="R_CBPS" />
-          <groups:member groups:idRef="R_GLU5K" />
-          <groups:member groups:idRef="R_P5CR" />
-          <groups:member groups:idRef="R_G5SADs" />
-          <groups:member groups:idRef="R_OCBT" />
-          <groups:member groups:idRef="R_SOTA" />
-          <groups:member groups:idRef="R_SGSAD" />
-          <groups:member groups:idRef="R_ACOTA" />
-          <groups:member groups:idRef="R_SSALy" />
-          <groups:member groups:idRef="R_ARGDCpp" />
-          <groups:member groups:idRef="R_ACGK" />
-          <groups:member groups:idRef="R_ABUTD" />
-          <groups:member groups:idRef="R_MTAN" />
-          <groups:member groups:idRef="R_SADH" />
-          <groups:member groups:idRef="R_ACGS" />
-          <groups:member groups:idRef="R_ORNDC" />
-          <groups:member groups:idRef="R_AMPTASEPG" />
-          <groups:member groups:idRef="R_APCS" />
-          <groups:member groups:idRef="R_GHBDHx" />
-          <groups:member groups:idRef="R_PROD3" />
-        </groups:listOfMembers>
-      </groups:group>
-      <groups:group groups:id="g9" groups:kind="partonomy" groups:name="Nucleotide Salvage Pathway" sboTerm="SBO:0000633">
-        <groups:listOfMembers>
-          <groups:member groups:idRef="R_TMDPP" />
-          <groups:member groups:idRef="R_URIK1" />
-          <groups:member groups:idRef="R_URIK2" />
-          <groups:member groups:idRef="R_CYTDK1" />
-          <groups:member groups:idRef="R_CYTDK2" />
-          <groups:member groups:idRef="R_XPPT" />
-          <groups:member groups:idRef="R_HXPRT" />
-          <groups:member groups:idRef="R_NDPK5" />
-          <groups:member groups:idRef="R_NDPK6" />
-          <groups:member groups:idRef="R_NDPK8" />
-          <groups:member groups:idRef="R_PYNP2r" />
-          <groups:member groups:idRef="R_DURIPP" />
-          <groups:member groups:idRef="R_NDP3" />
-          <groups:member groups:idRef="R_CDPPH" />
-          <groups:member groups:idRef="R_NDP7" />
-          <groups:member groups:idRef="R_NTPP1" />
-          <groups:member groups:idRef="R_NTPP2" />
-          <groups:member groups:idRef="R_NTPTP1" />
-          <groups:member groups:idRef="R_NTPTP2" />
-          <groups:member groups:idRef="R_PUNP5" />
-          <groups:member groups:idRef="R_PUNP6" />
-          <groups:member groups:idRef="R_PUNP7" />
-          <groups:member groups:idRef="R_RNDR1" />
-          <groups:member groups:idRef="R_RNDR3" />
-          <groups:member groups:idRef="R_RNDR4" />
-          <groups:member groups:idRef="R_TMDS" />
-          <groups:member groups:idRef="R_TMDK1" />
-          <groups:member groups:idRef="R_PUNP1" />
-          <groups:member groups:idRef="R_PUNP2" />
-          <groups:member groups:idRef="R_PUNP3" />
-          <groups:member groups:idRef="R_ADK4" />
-          <groups:member groups:idRef="R_INSK" />
-          <groups:member groups:idRef="R_NTD2" />
-          <groups:member groups:idRef="R_NTD4" />
-          <groups:member groups:idRef="R_NTD5" />
-          <groups:member groups:idRef="R_NTD6" />
-          <groups:member groups:idRef="R_CMPN" />
-          <groups:member groups:idRef="R_NTD9" />
-          <groups:member groups:idRef="R_NTD10" />
-          <groups:member groups:idRef="R_ADPT" />
-          <groups:member groups:idRef="R_ADK1" />
-          <groups:member groups:idRef="R_GP4GH" />
-          <groups:member groups:idRef="R_CYTK1" />
-          <groups:member groups:idRef="R_CYTK2" />
-          <groups:member groups:idRef="R_GK1" />
-          <groups:member groups:idRef="R_NDPK7" />
-          <groups:member groups:idRef="R_NDPK2" />
-          <groups:member groups:idRef="R_NDPK3" />
-          <groups:member groups:idRef="R_NDPK4" />
-          <groups:member groups:idRef="R_GUAD" />
-          <groups:member groups:idRef="R_DGK1" />
-          <groups:member groups:idRef="R_DTMPK" />
-          <groups:member groups:idRef="R_NDPK1" />
-          <groups:member groups:idRef="R_AMPN" />
-          <groups:member groups:idRef="R_GSNK" />
-          <groups:member groups:idRef="R_UMPK" />
-          <groups:member groups:idRef="R_DURIK1" />
-          <groups:member groups:idRef="R_UPPRT" />
-          <groups:member groups:idRef="R_NTD1" />
-          <groups:member groups:idRef="R_NTD7" />
-          <groups:member groups:idRef="R_ADA" />
-          <groups:member groups:idRef="R_DADA" />
-          <groups:member groups:idRef="R_ADD" />
-          <groups:member groups:idRef="R_ADPRDP" />
-          <groups:member groups:idRef="R_NNATr" />
-          <groups:member groups:idRef="R_NTPP4" />
-          <groups:member groups:idRef="R_NTPP3" />
-          <groups:member groups:idRef="R_NTPP6" />
-          <groups:member groups:idRef="R_NTPP7" />
-          <groups:member groups:idRef="R_NTPP8" />
-          <groups:member groups:idRef="R_CYTD" />
-          <groups:member groups:idRef="R_DCYTD" />
-          <groups:member groups:idRef="R_DCTPD" />
-          <groups:member groups:idRef="R_CSND" />
-          <groups:member groups:idRef="R_AP4AH" />
-          <groups:member groups:idRef="R_AP5AH" />
-          <groups:member groups:idRef="R_ADNCYC" />
-          <groups:member groups:idRef="R_NTP3" />
-          <groups:member groups:idRef="R_ADK3" />
-          <groups:member groups:idRef="R_NTP3pp" />
-          <groups:member groups:idRef="R_NTD8pp" />
-          <groups:member groups:idRef="R_XTSNH" />
-          <groups:member groups:idRef="R_INSH" />
-          <groups:member groups:idRef="R_DATPHs" />
-          <groups:member groups:idRef="R_RNDR3b" />
-          <groups:member groups:idRef="R_RNDR4b" />
-          <groups:member groups:idRef="R_RNDR1b" />
-          <groups:member groups:idRef="R_RNDR2b" />
-          <groups:member groups:idRef="R_GUACYC" />
-          <groups:member groups:idRef="R_23PDE2pp" />
-          <groups:member groups:idRef="R_23PDE4pp" />
-          <groups:member groups:idRef="R_23PDE9pp" />
-          <groups:member groups:idRef="R_ATPHs" />
-          <groups:member groups:idRef="R_GTPHs" />
-          <groups:member groups:idRef="R_NTD12" />
-          <groups:member groups:idRef="R_NTPP9" />
-          <groups:member groups:idRef="R_NTPP10" />
-          <groups:member groups:idRef="R_NTPP11" />
-          <groups:member groups:idRef="R_NTD10pp" />
-          <groups:member groups:idRef="R_NTD1pp" />
-          <groups:member groups:idRef="R_NTD2pp" />
-          <groups:member groups:idRef="R_NTD3pp" />
-          <groups:member groups:idRef="R_NTD4pp" />
-          <groups:member groups:idRef="R_NTD5pp" />
-          <groups:member groups:idRef="R_NTD6pp" />
-          <groups:member groups:idRef="R_NTD7pp" />
-          <groups:member groups:idRef="R_NTD9pp" />
-          <groups:member groups:idRef="R_NTD12pp" />
-          <groups:member groups:idRef="R_3NTD7pp" />
-          <groups:member groups:idRef="R_3NTD4pp" />
-          <groups:member groups:idRef="R_3NTD2pp" />
-          <groups:member groups:idRef="R_3NTD9pp" />
-          <groups:member groups:idRef="R_23PDE7pp" />
-          <groups:member groups:idRef="R_NTPP5" />
-          <groups:member groups:idRef="R_NTD3" />
-          <groups:member groups:idRef="R_RNDR2" />
-          <groups:member groups:idRef="R_XAND" />
-          <groups:member groups:idRef="R_DADK" />
-          <groups:member groups:idRef="R_DUTPDP" />
-          <groups:member groups:idRef="R_NTP5" />
-          <groups:member groups:idRef="R_GUAPRT" />
-          <groups:member groups:idRef="R_NTD8" />
-          <groups:member groups:idRef="R_PUNP4" />
-          <groups:member groups:idRef="R_NTD11pp" />
-          <groups:member groups:idRef="R_PDE1" />
-          <groups:member groups:idRef="R_PDE4" />
-          <groups:member groups:idRef="R_HXAND" />
-          <groups:member groups:idRef="R_ADNK1" />
-          <groups:member groups:idRef="R_NTP10" />
-          <groups:member groups:idRef="R_DURADx" />
-          <groups:member groups:idRef="R_NTD11" />
-          <groups:member groups:idRef="R_NTP12" />
-          <groups:member groups:idRef="R_NTP11" />
-          <groups:member groups:idRef="R_DGUNC" />
-          <groups:member groups:idRef="R_LDGUNPD" />
-          <groups:member groups:idRef="R_3AMACHYD" />
-          <groups:member groups:idRef="R_CBMD" />
-          <groups:member groups:idRef="R_MSAR" />
-          <groups:member groups:idRef="R_URACPAH" />
-          <groups:member groups:idRef="R_POAACR" />
-          <groups:member groups:idRef="R_PYROX" />
-          <groups:member groups:idRef="R_RNTR1c2" />
-          <groups:member groups:idRef="R_RNTR2c2" />
-          <groups:member groups:idRef="R_RNTR3c2" />
-          <groups:member groups:idRef="R_RNTR4c2" />
-          <groups:member groups:idRef="R_AP4AS" />
-          <groups:member groups:idRef="R_PYK2" />
-          <groups:member groups:idRef="R_PYK3" />
-          <groups:member groups:idRef="R_PYK4" />
-          <groups:member groups:idRef="R_PYK6" />
-        </groups:listOfMembers>
-      </groups:group>
-      <groups:group groups:id="g10" groups:kind="partonomy" groups:name="Unassigned" sboTerm="SBO:0000633">
-        <groups:listOfMembers>
-          <groups:member groups:idRef="R_HCO3E" />
-          <groups:member groups:idRef="R_URIC" />
-          <groups:member groups:idRef="R_CAT" />
-          <groups:member groups:idRef="R_BETALDHx" />
-          <groups:member groups:idRef="R_BETALDHy" />
-          <groups:member groups:idRef="R_SPODM" />
-          <groups:member groups:idRef="R_CYANST" />
-          <groups:member groups:idRef="R_SPODMpp" />
-          <groups:member groups:idRef="R_PPTHpp" />
-          <groups:member groups:idRef="R_CHOLD" />
-          <groups:member groups:idRef="R_GRXR" />
-          <groups:member groups:idRef="R_ACONMT" />
-          <groups:member groups:idRef="R_SELNPS" />
-          <groups:member groups:idRef="R_ALPATE160pp" />
-          <groups:member groups:idRef="R_ALPATG160pp" />
-          <groups:member groups:idRef="R_DSBCGT" />
-          <groups:member groups:idRef="R_DSBGGT" />
-          <groups:member groups:idRef="R_THIORDXi" />
-          <groups:member groups:idRef="R_ACONIs" />
-          <groups:member groups:idRef="R_DSBAO1" />
-          <groups:member groups:idRef="R_DSBAO2" />
-          <groups:member groups:idRef="R_DSBDR" />
-          <groups:member groups:idRef="R_NADHPO" />
-          <groups:member groups:idRef="R_GTHPi" />
-          <groups:member groups:idRef="R_FLDR2" />
-          <groups:member groups:idRef="R_TEO2M" />
-        </groups:listOfMembers>
-      </groups:group>
-      <groups:group groups:id="g11" groups:kind="partonomy" groups:name="Membrane Lipid Metabolism" sboTerm="SBO:0000633">
-        <groups:listOfMembers>
-          <groups:member groups:idRef="R_ECOAH4" />
-          <groups:member groups:idRef="R_ECOAH6" />
-          <groups:member groups:idRef="R_MACPD" />
-          <groups:member groups:idRef="R_HACD5" />
-          <groups:member groups:idRef="R_ACCOAC" />
-          <groups:member groups:idRef="R_HACD6" />
-          <groups:member groups:idRef="R_ECOAH1" />
-          <groups:member groups:idRef="R_ECOAH2" />
-          <groups:member groups:idRef="R_ECOAH3" />
-          <groups:member groups:idRef="R_KAS14" />
-          <groups:member groups:idRef="R_HACD4" />
-          <groups:member groups:idRef="R_HACD7" />
-          <groups:member groups:idRef="R_HACD1" />
-          <groups:member groups:idRef="R_HACD2" />
-          <groups:member groups:idRef="R_MCOATA" />
-          <groups:member groups:idRef="R_ACOATA" />
-          <groups:member groups:idRef="R_ACACT7r" />
-          <groups:member groups:idRef="R_ACACT2r" />
-          <groups:member groups:idRef="R_ACACT3r" />
-          <groups:member groups:idRef="R_ACACT4r" />
-          <groups:member groups:idRef="R_ECOAH8" />
-          <groups:member groups:idRef="R_ECOAH5" />
-          <groups:member groups:idRef="R_ACACT5r" />
-          <groups:member groups:idRef="R_ACACT6r" />
-          <groups:member groups:idRef="R_HACD3" />
-          <groups:member groups:idRef="R_ACACT1r" />
-          <groups:member groups:idRef="R_ECOAH7" />
-          <groups:member groups:idRef="R_KAS15" />
-          <groups:member groups:idRef="R_ACOAD7f" />
-          <groups:member groups:idRef="R_ACOAD8f" />
-          <groups:member groups:idRef="R_ACOAD5f" />
-          <groups:member groups:idRef="R_ACOAD3f" />
-          <groups:member groups:idRef="R_ACOAD2f" />
-          <groups:member groups:idRef="R_ACOAD4f" />
-          <groups:member groups:idRef="R_ACOAD6f" />
-          <groups:member groups:idRef="R_HACD8" />
-          <groups:member groups:idRef="R_CTECOAI8" />
-          <groups:member groups:idRef="R_CTECOAI6" />
-          <groups:member groups:idRef="R_ACACT8r" />
-          <groups:member groups:idRef="R_CTECOAI7" />
-          <groups:member groups:idRef="R_ACOAD1fr" />
-          <groups:member groups:idRef="R_ACOXT" />
-          <groups:member groups:idRef="R_ACOAD1f" />
-        </groups:listOfMembers>
-      </groups:group>
-      <groups:group groups:id="g12" groups:kind="partonomy" groups:name="tRNA Charging" sboTerm="SBO:0000633">
-        <groups:listOfMembers>
-          <groups:member groups:idRef="R_GLUTRS" />
-        </groups:listOfMembers>
-      </groups:group>
-      <groups:group groups:id="g13" groups:kind="partonomy" groups:name="Citric Acid Cycle" sboTerm="SBO:0000633">
-        <groups:listOfMembers>
-          <groups:member groups:idRef="R_CS" />
-          <groups:member groups:idRef="R_ICDHyr" />
-          <groups:member groups:idRef="R_FRD2" />
-          <groups:member groups:idRef="R_FRD3" />
-          <groups:member groups:idRef="R_MDH" />
-          <groups:member groups:idRef="R_FUM" />
-          <groups:member groups:idRef="R_CITL" />
-          <groups:member groups:idRef="R_AKGDH" />
-          <groups:member groups:idRef="R_MDH3" />
-          <groups:member groups:idRef="R_MDH2" />
-          <groups:member groups:idRef="R_SUCOAS" />
-          <groups:member groups:idRef="R_ACONTb" />
-          <groups:member groups:idRef="R_ACONTa" />
-          <groups:member groups:idRef="R_MOX" />
-        </groups:listOfMembers>
-      </groups:group>
-      <groups:group groups:id="g14" groups:kind="partonomy" groups:name="Pyruvate Metabolism" sboTerm="SBO:0000633">
-        <groups:listOfMembers>
-          <groups:member groups:idRef="R_ACALD" />
-          <groups:member groups:idRef="R_ACS" />
-          <groups:member groups:idRef="R_ALCD2x" />
-          <groups:member groups:idRef="R_PFL" />
-          <groups:member groups:idRef="R_PTAr" />
-          <groups:member groups:idRef="R_ACKr" />
-          <groups:member groups:idRef="R_OAADC" />
-          <groups:member groups:idRef="R_FHL" />
-          <groups:member groups:idRef="R_LDH_D" />
-          <groups:member groups:idRef="R_POR5" />
-        </groups:listOfMembers>
-      </groups:group>
-      <groups:group groups:id="g15" groups:kind="partonomy" groups:name="Anaplerotic Reactions" sboTerm="SBO:0000633">
-        <groups:listOfMembers>
-          <groups:member groups:idRef="R_PPA" />
-          <groups:member groups:idRef="R_PPCK" />
-          <groups:member groups:idRef="R_ME1" />
-          <groups:member groups:idRef="R_ICL" />
-          <groups:member groups:idRef="R_PPC" />
-          <groups:member groups:idRef="R_MALS" />
-          <groups:member groups:idRef="R_ME2" />
-          <groups:member groups:idRef="R_PPA2" />
-        </groups:listOfMembers>
-      </groups:group>
-      <groups:group groups:id="g16" groups:kind="partonomy" groups:name="Alanine and Aspartate Metabolism" sboTerm="SBO:0000633">
-        <groups:listOfMembers>
-          <groups:member groups:idRef="R_ALAR" />
-          <groups:member groups:idRef="R_ALATA_L" />
-          <groups:member groups:idRef="R_ASPTA" />
-          <groups:member groups:idRef="R_ASPT" />
-          <groups:member groups:idRef="R_ASNN" />
-          <groups:member groups:idRef="R_ASNS2" />
-          <groups:member groups:idRef="R_ASNNpp" />
-          <groups:member groups:idRef="R_DAAD" />
-          <groups:member groups:idRef="R_ASNS1" />
-        </groups:listOfMembers>
-      </groups:group>
-      <groups:group groups:id="g17" groups:kind="partonomy" groups:name="Glycolysis/Gluconeogenesis" sboTerm="SBO:0000633">
-        <groups:listOfMembers>
-          <groups:member groups:idRef="R_FBP" />
-          <groups:member groups:idRef="R_GLGC" />
-          <groups:member groups:idRef="R_PYK" />
-          <groups:member groups:idRef="R_ENO" />
-          <groups:member groups:idRef="R_FBA" />
-          <groups:member groups:idRef="R_PPS" />
-          <groups:member groups:idRef="R_PGI" />
-          <groups:member groups:idRef="R_PGK" />
-          <groups:member groups:idRef="R_G1PP" />
-          <groups:member groups:idRef="R_GLCS1" />
-          <groups:member groups:idRef="R_GLCP" />
-          <groups:member groups:idRef="R_F6PA" />
-          <groups:member groups:idRef="R_GAPD" />
-          <groups:member groups:idRef="R_HEX1" />
-          <groups:member groups:idRef="R_GLBRAN2" />
-          <groups:member groups:idRef="R_PDH" />
-          <groups:member groups:idRef="R_PFK" />
-          <groups:member groups:idRef="R_PGM" />
-          <groups:member groups:idRef="R_TPI" />
-          <groups:member groups:idRef="R_G6PP" />
-          <groups:member groups:idRef="R_G1PPpp" />
-          <groups:member groups:idRef="R_GLCP2" />
-          <groups:member groups:idRef="R_GLDBRAN2" />
-        </groups:listOfMembers>
-      </groups:group>
-      <groups:group groups:id="g18" groups:kind="partonomy" groups:name="Methylglyoxal Metabolism" sboTerm="SBO:0000633">
-        <groups:listOfMembers>
-          <groups:member groups:idRef="R_MGSA" />
-          <groups:member groups:idRef="R_LGTHL" />
-          <groups:member groups:idRef="R_GLYOX3" />
-          <groups:member groups:idRef="R_GLYOX" />
-          <groups:member groups:idRef="R_ALR2" />
-          <groups:member groups:idRef="R_LALDO3" />
-          <groups:member groups:idRef="R_AACTOOR" />
-          <groups:member groups:idRef="R_LALDO2x" />
-          <groups:member groups:idRef="R_ALR2x" />
-        </groups:listOfMembers>
-      </groups:group>
-      <groups:group groups:id="g19" groups:kind="partonomy" groups:name="Cysteine Metabolism" sboTerm="SBO:0000633">
-        <groups:listOfMembers>
-          <groups:member groups:idRef="R_CYSDS" />
-          <groups:member groups:idRef="R_SADT2" />
-          <groups:member groups:idRef="R_SERAT" />
-          <groups:member groups:idRef="R_CYSS" />
-          <groups:member groups:idRef="R_BPNT" />
-          <groups:member groups:idRef="R_PAPSR" />
-          <groups:member groups:idRef="R_SULR" />
-          <groups:member groups:idRef="R_ADSK" />
-          <groups:member groups:idRef="R_MCPST" />
-          <groups:member groups:idRef="R_AMPTASECG" />
-          <groups:member groups:idRef="R_PAPSR2" />
-          <groups:member groups:idRef="R_CYSSADS" />
-          <groups:member groups:idRef="R_CYSDDS" />
-          <groups:member groups:idRef="R_CYSTA" />
-        </groups:listOfMembers>
-      </groups:group>
-      <groups:group groups:id="g20" groups:kind="partonomy" groups:name="Lipopolysaccharide Biosynthesis / Recycling" sboTerm="SBO:0000633">
-        <groups:listOfMembers>
-          <groups:member groups:idRef="R_MOAT" />
-          <groups:member groups:idRef="R_USHD" />
-          <groups:member groups:idRef="R_LPADSS" />
-          <groups:member groups:idRef="R_TDSK" />
-          <groups:member groups:idRef="R_KDOCT2" />
-          <groups:member groups:idRef="R_EDTXS1" />
-          <groups:member groups:idRef="R_EDTXS2" />
-          <groups:member groups:idRef="R_EDTXS3" />
-          <groups:member groups:idRef="R_EDTXS4" />
-          <groups:member groups:idRef="R_GMHEPK" />
-          <groups:member groups:idRef="R_GMHEPPA" />
-          <groups:member groups:idRef="R_S7PI" />
-          <groups:member groups:idRef="R_KDOPS" />
-          <groups:member groups:idRef="R_KDOPP" />
-          <groups:member groups:idRef="R_AGMHE" />
-          <groups:member groups:idRef="R_GMHEPAT" />
-          <groups:member groups:idRef="R_U23GAAT" />
-          <groups:member groups:idRef="R_UHGADA" />
-          <groups:member groups:idRef="R_UAGAAT" />
-          <groups:member groups:idRef="R_MOAT2" />
-          <groups:member groups:idRef="R_GLCTR1" />
-          <groups:member groups:idRef="R_LIPAabcpp" />
-          <groups:member groups:idRef="R_LIPACabcpp" />
-          <groups:member groups:idRef="R_O16GLCT1" />
-          <groups:member groups:idRef="R_O16AP2pp" />
-          <groups:member groups:idRef="R_O16AP3pp" />
-          <groups:member groups:idRef="R_O16A4Lpp" />
-          <groups:member groups:idRef="R_LIPAHT2ex" />
-          <groups:member groups:idRef="R_LIPAHTex" />
-          <groups:member groups:idRef="R_ECAP1pp" />
-          <groups:member groups:idRef="R_ECAP2pp" />
-          <groups:member groups:idRef="R_ECA4OALpp" />
-          <groups:member groups:idRef="R_GLCTR3" />
-          <groups:member groups:idRef="R_HEPT4" />
-          <groups:member groups:idRef="R_LA4NTpp" />
-          <groups:member groups:idRef="R_ECAtpp" />
-          <groups:member groups:idRef="R_O16AT" />
-          <groups:member groups:idRef="R_O16GALFT" />
-          <groups:member groups:idRef="R_O16GLCT2" />
-          <groups:member groups:idRef="R_O16AUNDtpp" />
-          <groups:member groups:idRef="R_O16AP1pp" />
-          <groups:member groups:idRef="R_UDPGDC" />
-          <groups:member groups:idRef="R_UDPKAAT" />
-          <groups:member groups:idRef="R_ULA4NFT" />
-          <groups:member groups:idRef="R_UPLA4FNT" />
-          <groups:member groups:idRef="R_UPLA4FNF" />
-          <groups:member groups:idRef="R_ULA4Ntppi" />
-          <groups:member groups:idRef="R_HEPT1" />
-          <groups:member groups:idRef="R_HEPT2" />
-          <groups:member groups:idRef="R_MOAT3C" />
-          <groups:member groups:idRef="R_RHAT1" />
-          <groups:member groups:idRef="R_GALT1" />
-          <groups:member groups:idRef="R_GLCTR2" />
-          <groups:member groups:idRef="R_HEPK1" />
-          <groups:member groups:idRef="R_HEPT3" />
-          <groups:member groups:idRef="R_HEPK2" />
-          <groups:member groups:idRef="R_ECAP3pp" />
-          <groups:member groups:idRef="R_UDCPPtppi" />
-          <groups:member groups:idRef="R_COLIPAabcpp" />
-          <groups:member groups:idRef="R_PETNT161pp" />
-          <groups:member groups:idRef="R_LIPAabctex" />
-          <groups:member groups:idRef="R_O16A4COLIPAabctex" />
-          <groups:member groups:idRef="R_COLIPAabctex" />
-          <groups:member groups:idRef="R_ENLIPAabctex" />
-          <groups:member groups:idRef="R_CLIPAabctex" />
-          <groups:member groups:idRef="R_K2L4Aabctex" />
-          <groups:member groups:idRef="R_COLIPAKpp" />
-          <groups:member groups:idRef="R_ACOLIPAabctex" />
-          <groups:member groups:idRef="R_ECA4COLIPAabctex" />
-          <groups:member groups:idRef="R_COLIPAPabctex" />
-          <groups:member groups:idRef="R_PETNT181pp" />
-          <groups:member groups:idRef="R_3HBZCT" />
-        </groups:listOfMembers>
-      </groups:group>
-      <groups:group groups:id="g21" groups:kind="partonomy" groups:name="Folate Metabolism" sboTerm="SBO:0000633">
-        <groups:listOfMembers>
-          <groups:member groups:idRef="R_FTHFD" />
-          <groups:member groups:idRef="R_GLYCL" />
-          <groups:member groups:idRef="R_FTHFLi" />
-          <groups:member groups:idRef="R_MTHFR2" />
-          <groups:member groups:idRef="R_MTHFC" />
-          <groups:member groups:idRef="R_MTHFD" />
-          <groups:member groups:idRef="R_GCALDD" />
-          <groups:member groups:idRef="R_THFAT" />
-          <groups:member groups:idRef="R_FOMETRi" />
-        </groups:listOfMembers>
-      </groups:group>
-      <groups:group groups:id="g22" groups:kind="partonomy" groups:name="Threonine and Lysine Metabolism" sboTerm="SBO:0000633">
-        <groups:listOfMembers>
-          <groups:member groups:idRef="R_LYSAM" />
-          <groups:member groups:idRef="R_SDPDS" />
-          <groups:member groups:idRef="R_AOBUTDs" />
-          <groups:member groups:idRef="R_DAPE" />
-          <groups:member groups:idRef="R_DHDPRy" />
-          <groups:member groups:idRef="R_HSK" />
-          <groups:member groups:idRef="R_SDPTA" />
-          <groups:member groups:idRef="R_THRS" />
-          <groups:member groups:idRef="R_ASPK" />
-          <groups:member groups:idRef="R_ASAD" />
-          <groups:member groups:idRef="R_DAPDC" />
-          <groups:member groups:idRef="R_DHDPS" />
-          <groups:member groups:idRef="R_HSDy" />
-          <groups:member groups:idRef="R_PTHRpp" />
-          <groups:member groups:idRef="R_THDPS" />
-          <groups:member groups:idRef="R_LYSDC" />
-          <groups:member groups:idRef="R_THRA2" />
-          <groups:member groups:idRef="R_ATHRDHr" />
-          <groups:member groups:idRef="R_THRA" />
-          <groups:member groups:idRef="R_APPLDHr" />
-        </groups:listOfMembers>
-      </groups:group>
-      <groups:group groups:id="g23" groups:kind="partonomy" groups:name="Cell Envelope Biosynthesis" sboTerm="SBO:0000633">
-        <groups:listOfMembers>
-          <groups:member groups:idRef="R_PGAMT" />
-          <groups:member groups:idRef="R_UAGDP" />
-          <groups:member groups:idRef="R_UAGCVT" />
-          <groups:member groups:idRef="R_GLUR" />
-          <groups:member groups:idRef="R_UAG2E" />
-          <groups:member groups:idRef="R_GOFUCR" />
-          <groups:member groups:idRef="R_AACPS1" />
-          <groups:member groups:idRef="R_AACPS2" />
-          <groups:member groups:idRef="R_AACPS3" />
-          <groups:member groups:idRef="R_AACPS4" />
-          <groups:member groups:idRef="R_ACMAMUT" />
-          <groups:member groups:idRef="R_ACGAMT" />
-          <groups:member groups:idRef="R_AADDGT" />
-          <groups:member groups:idRef="R_UDCPDP" />
-          <groups:member groups:idRef="R_G1PTT" />
-          <groups:member groups:idRef="R_TDPGDH" />
-          <groups:member groups:idRef="R_UDPGALM" />
-          <groups:member groups:idRef="R_TDPDRE" />
-          <groups:member groups:idRef="R_TDPDRR" />
-          <groups:member groups:idRef="R_UAPGR" />
-          <groups:member groups:idRef="R_PAPPT3" />
-          <groups:member groups:idRef="R_UAGPT3" />
-          <groups:member groups:idRef="R_TDPADGAT" />
-          <groups:member groups:idRef="R_GALUi" />
-          <groups:member groups:idRef="R_UAAGDS" />
-          <groups:member groups:idRef="R_UAMAS" />
-          <groups:member groups:idRef="R_UAMAGS" />
-          <groups:member groups:idRef="R_UGMDDS" />
-          <groups:member groups:idRef="R_GMAND" />
-          <groups:member groups:idRef="R_G1PACT" />
-          <groups:member groups:idRef="R_GF6PTA" />
-          <groups:member groups:idRef="R_ETHAAL" />
-          <groups:member groups:idRef="R_MAN1PT2" />
-          <groups:member groups:idRef="R_MI1PP" />
-          <groups:member groups:idRef="R_UDPGD" />
-          <groups:member groups:idRef="R_TDPAGTA" />
-          <groups:member groups:idRef="R_UACMAMO" />
-          <groups:member groups:idRef="R_FACOAL160t2pp" />
-          <groups:member groups:idRef="R_FACOAL180t2pp" />
-          <groups:member groups:idRef="R_UDCPDPpp" />
-          <groups:member groups:idRef="R_FACOAE181" />
-          <groups:member groups:idRef="R_FACOAE160" />
-          <groups:member groups:idRef="R_FACOAE140" />
-          <groups:member groups:idRef="R_FACOAL80t2pp" />
-          <groups:member groups:idRef="R_GDPMNH" />
-          <groups:member groups:idRef="R_FACOAL60t2pp" />
-          <groups:member groups:idRef="R_FACOAL100t2pp" />
-          <groups:member groups:idRef="R_FACOAL120t2pp" />
-          <groups:member groups:idRef="R_FACOAL140t2pp" />
-          <groups:member groups:idRef="R_AACPS5" />
-          <groups:member groups:idRef="R_ALAALAr" />
-          <groups:member groups:idRef="R_GDMANE" />
-          <groups:member groups:idRef="R_AACPS6" />
-          <groups:member groups:idRef="R_AACPS7" />
-          <groups:member groups:idRef="R_AACPS8" />
-          <groups:member groups:idRef="R_AACPS9" />
-          <groups:member groups:idRef="R_FACOAL181t2pp" />
-          <groups:member groups:idRef="R_T2DECAI" />
-          <groups:member groups:idRef="R_3OAS161" />
-          <groups:member groups:idRef="R_EAR141y" />
-          <groups:member groups:idRef="R_EAR161x" />
-          <groups:member groups:idRef="R_FACOAE180" />
-          <groups:member groups:idRef="R_FACOAE100" />
-          <groups:member groups:idRef="R_FACOAE80" />
-          <groups:member groups:idRef="R_FACOAE60" />
-          <groups:member groups:idRef="R_3OAS141" />
-          <groups:member groups:idRef="R_3OAR121" />
-          <groups:member groups:idRef="R_FACOAE141" />
-          <groups:member groups:idRef="R_FACOAE161" />
-          <groups:member groups:idRef="R_FACOAL141t2pp" />
-          <groups:member groups:idRef="R_FACOAL161t2pp" />
-          <groups:member groups:idRef="R_EAR141x" />
-          <groups:member groups:idRef="R_EAR181x" />
-          <groups:member groups:idRef="R_EAR181y" />
-          <groups:member groups:idRef="R_FACOAE120" />
-          <groups:member groups:idRef="R_3OAR120" />
-          <groups:member groups:idRef="R_3HAD80" />
-          <groups:member groups:idRef="R_3HAD120" />
-          <groups:member groups:idRef="R_EAR180x" />
-          <groups:member groups:idRef="R_EAR180y" />
-          <groups:member groups:idRef="R_3HAD161" />
-          <groups:member groups:idRef="R_EAR80y" />
-          <groups:member groups:idRef="R_EAR120y" />
-          <groups:member groups:idRef="R_3OAR181" />
-          <groups:member groups:idRef="R_3HAD121" />
-          <groups:member groups:idRef="R_EAR121y" />
-          <groups:member groups:idRef="R_EAR140x" />
-          <groups:member groups:idRef="R_EAR40y" />
-          <groups:member groups:idRef="R_3OAS181" />
-          <groups:member groups:idRef="R_EAR161y" />
-          <groups:member groups:idRef="R_EAR160y" />
-          <groups:member groups:idRef="R_EAR100y" />
-          <groups:member groups:idRef="R_3OAR141" />
-          <groups:member groups:idRef="R_3OAR161" />
-          <groups:member groups:idRef="R_3HAD141" />
-          <groups:member groups:idRef="R_EAR121x" />
-          <groups:member groups:idRef="R_3OAS140" />
-          <groups:member groups:idRef="R_3OAR140" />
-          <groups:member groups:idRef="R_3OAR160" />
-          <groups:member groups:idRef="R_3HAD181" />
-          <groups:member groups:idRef="R_3HAD40" />
-          <groups:member groups:idRef="R_3OAS60" />
-          <groups:member groups:idRef="R_3OAS160" />
-          <groups:member groups:idRef="R_3OAR60" />
-          <groups:member groups:idRef="R_3OAR80" />
-          <groups:member groups:idRef="R_EAR100x" />
-          <groups:member groups:idRef="R_EAR120x" />
-          <groups:member groups:idRef="R_EAR160x" />
-          <groups:member groups:idRef="R_EAR140y" />
-          <groups:member groups:idRef="R_3OAS121" />
-          <groups:member groups:idRef="R_3OAS80" />
-          <groups:member groups:idRef="R_3OAS100" />
-          <groups:member groups:idRef="R_3OAS120" />
-          <groups:member groups:idRef="R_3OAR40" />
-          <groups:member groups:idRef="R_3OAR100" />
-          <groups:member groups:idRef="R_3HAD60" />
-          <groups:member groups:idRef="R_3HAD100" />
-          <groups:member groups:idRef="R_3HAD140" />
-          <groups:member groups:idRef="R_3HAD160" />
-          <groups:member groups:idRef="R_EAR40x" />
-          <groups:member groups:idRef="R_EAR60y" />
-          <groups:member groups:idRef="R_EAR60x" />
-          <groups:member groups:idRef="R_EAR80x" />
-          <groups:member groups:idRef="R_3OAS180" />
-          <groups:member groups:idRef="R_3HAD180" />
-          <groups:member groups:idRef="R_3OAR180" />
-          <groups:member groups:idRef="R_GDPMNP" />
-          <groups:member groups:idRef="R_FA120ACPHi" />
-          <groups:member groups:idRef="R_FA80ACPHi" />
-          <groups:member groups:idRef="R_FA140ACPHi" />
-          <groups:member groups:idRef="R_FA100ACPHi" />
-          <groups:member groups:idRef="R_KDUI" />
-          <groups:member groups:idRef="R_FA161ACPHi" />
-          <groups:member groups:idRef="R_FA141ACPHi" />
-          <groups:member groups:idRef="R_FA160ACPHi" />
-          <groups:member groups:idRef="R_XYHDL" />
-          <groups:member groups:idRef="R_PUACGAMS" />
-          <groups:member groups:idRef="R_UDPGPT" />
-        </groups:listOfMembers>
-      </groups:group>
-      <groups:group groups:id="g24" groups:kind="partonomy" groups:name="Glycine and Serine Metabolism" sboTerm="SBO:0000633">
-        <groups:listOfMembers>
-          <groups:member groups:idRef="R_GHMT2r" />
-          <groups:member groups:idRef="R_SERD_L" />
-          <groups:member groups:idRef="R_THRD" />
-          <groups:member groups:idRef="R_GLYAT" />
-          <groups:member groups:idRef="R_GLYCK2" />
-          <groups:member groups:idRef="R_PSERT" />
-          <groups:member groups:idRef="R_PSP_L" />
-          <groups:member groups:idRef="R_AHGDx" />
-          <groups:member groups:idRef="R_PSP_Lpp" />
-          <groups:member groups:idRef="R_SARCOX" />
-          <groups:member groups:idRef="R_MTRPOX" />
-          <groups:member groups:idRef="R_PGCD" />
-          <groups:member groups:idRef="R_SERD_D" />
-          <groups:member groups:idRef="R_LSERDHr" />
-          <groups:member groups:idRef="R_DSERDHr" />
-          <groups:member groups:idRef="R_SHGO" />
-          <groups:member groups:idRef="R_ARHGDx" />
-          <groups:member groups:idRef="R_4HTHRK" />
-          <groups:member groups:idRef="R_4HTHRA" />
-        </groups:listOfMembers>
-      </groups:group>
-      <groups:group groups:id="g25" groups:kind="partonomy" groups:name="Methionine Metabolism" sboTerm="SBO:0000633">
-        <groups:listOfMembers>
-          <groups:member groups:idRef="R_HCYSMT" />
-          <groups:member groups:idRef="R_RHCCE" />
-          <groups:member groups:idRef="R_HSST" />
-          <groups:member groups:idRef="R_METAT" />
-          <groups:member groups:idRef="R_AHCYSNS" />
-          <groups:member groups:idRef="R_CYSTL" />
-          <groups:member groups:idRef="R_SHSL1" />
-          <groups:member groups:idRef="R_METS" />
-          <groups:member groups:idRef="R_METSOXR1" />
-          <groups:member groups:idRef="R_METSOXR2" />
-          <groups:member groups:idRef="R_HCYSMT2" />
-          <groups:member groups:idRef="R_METOX1s" />
-          <groups:member groups:idRef="R_METOX2s" />
-          <groups:member groups:idRef="R_MTHTHFSs" />
-          <groups:member groups:idRef="R_DHPTDCs2" />
-          <groups:member groups:idRef="R_AI2K" />
-          <groups:member groups:idRef="R_PAI2I" />
-          <groups:member groups:idRef="R_METNA" />
-          <groups:member groups:idRef="R_PAI2T" />
-        </groups:listOfMembers>
-      </groups:group>
-      <groups:group groups:id="g26" groups:kind="partonomy" groups:name="Glyoxylate Metabolism" sboTerm="SBO:0000633">
-        <groups:listOfMembers>
-          <groups:member groups:idRef="R_GLXCL" />
-          <groups:member groups:idRef="R_GLYCLTDx" />
-          <groups:member groups:idRef="R_GLYCLTDy" />
-          <groups:member groups:idRef="R_GLYCK" />
-          <groups:member groups:idRef="R_DHGLYH" />
-        </groups:listOfMembers>
-      </groups:group>
-      <groups:group groups:id="g27" groups:kind="partonomy" groups:name="Nitrogen Metabolism" sboTerm="SBO:0000633">
-        <groups:listOfMembers>
-          <groups:member groups:idRef="R_ALLTN" />
-          <groups:member groups:idRef="R_CYNTAH" />
-          <groups:member groups:idRef="R_UGLYCH" />
-          <groups:member groups:idRef="R_CBMKr" />
-          <groups:member groups:idRef="R_NO3R1bpp" />
-          <groups:member groups:idRef="R_NO3R2bpp" />
-          <groups:member groups:idRef="R_NODOy" />
-          <groups:member groups:idRef="R_NODOx" />
-          <groups:member groups:idRef="R_NHFRBO" />
-          <groups:member groups:idRef="R_42A12BOOXpp" />
-          <groups:member groups:idRef="R_TYROXDApp" />
-          <groups:member groups:idRef="R_NTRIR4pp" />
-          <groups:member groups:idRef="R_NTRIR3pp" />
-          <groups:member groups:idRef="R_PEAMNOpp" />
-          <groups:member groups:idRef="R_OXAMTC" />
-          <groups:member groups:idRef="R_ALLTAMH2" />
-          <groups:member groups:idRef="R_UGCIAMH" />
-        </groups:listOfMembers>
-      </groups:group>
-      <groups:group groups:id="g28" groups:kind="partonomy" groups:name="Histidine Metabolism" sboTerm="SBO:0000633">
-        <groups:listOfMembers>
-          <groups:member groups:idRef="R_ATPPRT" />
-          <groups:member groups:idRef="R_HISTD" />
-          <groups:member groups:idRef="R_IGPDH" />
-          <groups:member groups:idRef="R_PRPPS" />
-          <groups:member groups:idRef="R_PRATPP" />
-          <groups:member groups:idRef="R_PRMICI" />
-          <groups:member groups:idRef="R_PRAMPC" />
-          <groups:member groups:idRef="R_HSTPT" />
-          <groups:member groups:idRef="R_IG3PS" />
-          <groups:member groups:idRef="R_HISTP" />
-        </groups:listOfMembers>
-      </groups:group>
-      <groups:group groups:id="g29" groups:kind="partonomy" groups:name="Inorganic Ion Transport and Metabolism" sboTerm="SBO:0000633">
-        <groups:listOfMembers>
-          <groups:member groups:idRef="R_H2SO" />
-          <groups:member groups:idRef="R_O2tpp" />
-          <groups:member groups:idRef="R_SULabcpp" />
-          <groups:member groups:idRef="R_TSULabcpp" />
-          <groups:member groups:idRef="R_Kt2pp" />
-          <groups:member groups:idRef="R_FDMO" />
-          <groups:member groups:idRef="R_FEOXAMabcpp" />
-          <groups:member groups:idRef="R_FEENTERabcpp" />
-          <groups:member groups:idRef="R_FECRMabcpp" />
-          <groups:member groups:idRef="R_FE3DCITabcpp" />
-          <groups:member groups:idRef="R_FE2abcpp" />
-          <groups:member groups:idRef="R_FDMO3" />
-          <groups:member groups:idRef="R_FDMO4" />
-          <groups:member groups:idRef="R_ENTERES" />
-          <groups:member groups:idRef="R_FEOXAMUtex" />
-          <groups:member groups:idRef="R_ARBTNtpp" />
-          <groups:member groups:idRef="R_FEENTERtex" />
-          <groups:member groups:idRef="R_FE3HOXUtpp" />
-          <groups:member groups:idRef="R_FEOXAMUtpp" />
-          <groups:member groups:idRef="R_FECRMUtpp" />
-          <groups:member groups:idRef="R_FE3HOXR2" />
-          <groups:member groups:idRef="R_FDMO6" />
-          <groups:member groups:idRef="R_CYANSTpp" />
-          <groups:member groups:idRef="R_FE3HOXR3" />
-          <groups:member groups:idRef="R_FEENTERR1" />
-          <groups:member groups:idRef="R_FEENTERR3" />
-          <groups:member groups:idRef="R_CU1abcpp" />
-          <groups:member groups:idRef="R_HG2abcpp" />
-          <groups:member groups:idRef="R_NOtpp" />
-          <groups:member groups:idRef="R_N2Otpp" />
-          <groups:member groups:idRef="R_FEENTERR2" />
-          <groups:member groups:idRef="R_FE3HOXR1" />
-          <groups:member groups:idRef="R_FEENTERexs" />
-          <groups:member groups:idRef="R_FE3HOXexs" />
-          <groups:member groups:idRef="R_FECRMR3" />
-          <groups:member groups:idRef="R_FDMO2" />
-          <groups:member groups:idRef="R_FEROpp" />
-          <groups:member groups:idRef="R_FECRMR1" />
-          <groups:member groups:idRef="R_FECRMR2" />
-          <groups:member groups:idRef="R_FECRMexs" />
-          <groups:member groups:idRef="R_ARBTNR1" />
-          <groups:member groups:idRef="R_ARBTNR2" />
-          <groups:member groups:idRef="R_ARBTNR3" />
-          <groups:member groups:idRef="R_ARBTNexs" />
-          <groups:member groups:idRef="R_FEOXAMexs" />
-          <groups:member groups:idRef="R_FEOXAMR1" />
-          <groups:member groups:idRef="R_FEOXAMR2" />
-          <groups:member groups:idRef="R_FEOXAMR3" />
-          <groups:member groups:idRef="R_AGt3" />
-          <groups:member groups:idRef="R_CD2t3pp" />
-          <groups:member groups:idRef="R_ZNabcpp" />
-          <groups:member groups:idRef="R_FE2t2pp" />
-          <groups:member groups:idRef="R_CPGNR1" />
-          <groups:member groups:idRef="R_CPGNR2" />
-          <groups:member groups:idRef="R_CPGNR3" />
-          <groups:member groups:idRef="R_CPGNUtpp" />
-          <groups:member groups:idRef="R_CPGNUtex" />
-          <groups:member groups:idRef="R_CPGNexs" />
-          <groups:member groups:idRef="R_TUNGSabcpp" />
-          <groups:member groups:idRef="R_MOBDabcpp" />
-          <groups:member groups:idRef="R_NI2uabcpp" />
-          <groups:member groups:idRef="R_Kabcpp" />
-          <groups:member groups:idRef="R_NAt3_1p5pp" />
-          <groups:member groups:idRef="R_NAt3_2pp" />
-          <groups:member groups:idRef="R_NH4tpp" />
-          <groups:member groups:idRef="R_NO2t2rpp" />
-          <groups:member groups:idRef="R_NO3t7pp" />
-          <groups:member groups:idRef="R_PIuabcpp" />
-          <groups:member groups:idRef="R_CU2abcpp" />
-          <groups:member groups:idRef="R_COBALT2abcpp" />
-          <groups:member groups:idRef="R_NI2abcpp" />
-          <groups:member groups:idRef="R_MG2uabcpp" />
-          <groups:member groups:idRef="R_ASR" />
-          <groups:member groups:idRef="R_ZN2abcpp" />
-          <groups:member groups:idRef="R_FECRMUtex" />
-          <groups:member groups:idRef="R_CD2abcpp" />
-          <groups:member groups:idRef="R_Kt3pp" />
-          <groups:member groups:idRef="R_FE3HOXabcpp" />
-          <groups:member groups:idRef="R_ZN2t3pp" />
-          <groups:member groups:idRef="R_SO2tpp" />
-          <groups:member groups:idRef="R_FE3HOXUtex" />
-          <groups:member groups:idRef="R_NAt3pp" />
-          <groups:member groups:idRef="R_HG2t3pp" />
-          <groups:member groups:idRef="R_SO4t2pp" />
-          <groups:member groups:idRef="R_CU1Opp" />
-          <groups:member groups:idRef="R_COBALT2tpp" />
-          <groups:member groups:idRef="R_ZN2tpp" />
-          <groups:member groups:idRef="R_NI2tpp" />
-          <groups:member groups:idRef="R_COBALT2t3pp" />
-          <groups:member groups:idRef="R_CAt6pp" />
-          <groups:member groups:idRef="R_CA2t3pp" />
-          <groups:member groups:idRef="R_FE2tpp" />
-          <groups:member groups:idRef="R_MN2tpp" />
-          <groups:member groups:idRef="R_MG2tpp" />
-          <groups:member groups:idRef="R_NI2t3pp" />
-          <groups:member groups:idRef="R_CU2tpp" />
-          <groups:member groups:idRef="R_FE2t3pp" />
-          <groups:member groups:idRef="R_MN2t3pp" />
-          <groups:member groups:idRef="R_MG2t3_2pp" />
-          <groups:member groups:idRef="R_CD2tpp" />
-          <groups:member groups:idRef="R_FE3abcpp" />
-          <groups:member groups:idRef="R_CLt3_2pp" />
-          <groups:member groups:idRef="R_SELGTHR" />
-          <groups:member groups:idRef="R_SELGTHR3" />
-          <groups:member groups:idRef="R_SELR" />
-          <groups:member groups:idRef="R_SELGTHR2" />
-          <groups:member groups:idRef="R_SELabcpp" />
-          <groups:member groups:idRef="R_DHBSZ3FEabcpp" />
-          <groups:member groups:idRef="R_FE3DHBZS3R" />
-          <groups:member groups:idRef="R_FE3DCITexs" />
-          <groups:member groups:idRef="R_FEENTERES" />
-          <groups:member groups:idRef="R_FEENTERR4" />
-          <groups:member groups:idRef="R_PIt2rpp" />
-          <groups:member groups:idRef="R_CLtipp" />
-          <groups:member groups:idRef="R_PItpp" />
-          <groups:member groups:idRef="R_SLNTabcpp" />
-          <groups:member groups:idRef="R_FE3DCITR5" />
-          <groups:member groups:idRef="R_AMPNTAT" />
-        </groups:listOfMembers>
-      </groups:group>
-      <groups:group groups:id="g30" groups:kind="partonomy" groups:name="Glutamate Metabolism" sboTerm="SBO:0000633">
-        <groups:listOfMembers>
-          <groups:member groups:idRef="R_GLUN" />
-          <groups:member groups:idRef="R_GLUDC" />
-          <groups:member groups:idRef="R_GLUNpp" />
-          <groups:member groups:idRef="R_GLUDy" />
-          <groups:member groups:idRef="R_GLUSy" />
-          <groups:member groups:idRef="R_GLNS" />
-        </groups:listOfMembers>
-      </groups:group>
-      <groups:group groups:id="g31" groups:kind="partonomy" groups:name="Glycerophospholipid Metabolism" sboTerm="SBO:0000633">
-        <groups:listOfMembers>
-          <groups:member groups:idRef="R_GPDDA1" />
-          <groups:member groups:idRef="R_GPDDA2" />
-          <groups:member groups:idRef="R_GPDDA5" />
-          <groups:member groups:idRef="R_GPDDA1pp" />
-          <groups:member groups:idRef="R_GPDDA5pp" />
-          <groups:member groups:idRef="R_GPDDA3pp" />
-          <groups:member groups:idRef="R_GPDDA4pp" />
-          <groups:member groups:idRef="R_GPDDA2pp" />
-          <groups:member groups:idRef="R_GPDDA4" />
-          <groups:member groups:idRef="R_LPLIPAL2E140" />
-          <groups:member groups:idRef="R_LPLIPAL2E180" />
-          <groups:member groups:idRef="R_LPLIPAL2G161" />
-          <groups:member groups:idRef="R_LPLIPAL2G181" />
-          <groups:member groups:idRef="R_LPLIPAL2E141" />
-          <groups:member groups:idRef="R_LPLIPAL2E161" />
-          <groups:member groups:idRef="R_LPLIPAL2E181" />
-          <groups:member groups:idRef="R_LPLIPAL2G180" />
-          <groups:member groups:idRef="R_LPLIPAL2G141" />
-          <groups:member groups:idRef="R_2AGPGAT180" />
-          <groups:member groups:idRef="R_2AGPGAT181" />
-          <groups:member groups:idRef="R_LPLIPAL2ATG120" />
-          <groups:member groups:idRef="R_PLIPA1E140pp" />
-          <groups:member groups:idRef="R_PLIPA1E160pp" />
-          <groups:member groups:idRef="R_PLIPA1E161pp" />
-          <groups:member groups:idRef="R_2AGPEAT160" />
-          <groups:member groups:idRef="R_DASYN160" />
-          <groups:member groups:idRef="R_DASYN161" />
-          <groups:member groups:idRef="R_DASYN181" />
-          <groups:member groups:idRef="R_CDAPPA161" />
-          <groups:member groups:idRef="R_PGSA180" />
-          <groups:member groups:idRef="R_PSSA140" />
-          <groups:member groups:idRef="R_2AGPGAT141" />
-          <groups:member groups:idRef="R_PLIPA1E120pp" />
-          <groups:member groups:idRef="R_CFAS160G" />
-          <groups:member groups:idRef="R_2AGPEAT180" />
-          <groups:member groups:idRef="R_2AGPEAT181" />
-          <groups:member groups:idRef="R_2AGPGAT140" />
-          <groups:member groups:idRef="R_PLIPA1E181pp" />
-          <groups:member groups:idRef="R_PLIPA1G180pp" />
-          <groups:member groups:idRef="R_PLIPA1G181pp" />
-          <groups:member groups:idRef="R_2AGPGAT161" />
-          <groups:member groups:idRef="R_2AGPEAT140" />
-          <groups:member groups:idRef="R_2AGPEAT120" />
-          <groups:member groups:idRef="R_2AGPEAT161" />
-          <groups:member groups:idRef="R_2AGPEAT141" />
-          <groups:member groups:idRef="R_2AGPGAT160" />
-          <groups:member groups:idRef="R_LPLIPAL2ATG140" />
-          <groups:member groups:idRef="R_LPLIPAL2ATG141" />
-          <groups:member groups:idRef="R_LPLIPAL2ATG160" />
-          <groups:member groups:idRef="R_LPLIPAL2ATG180" />
-          <groups:member groups:idRef="R_LPLIPAL2ATG161" />
-          <groups:member groups:idRef="R_LPLIPAL2ATG181" />
-          <groups:member groups:idRef="R_CLPNS180pp" />
-          <groups:member groups:idRef="R_CLPNS181pp" />
-          <groups:member groups:idRef="R_PLIPA1G120pp" />
-          <groups:member groups:idRef="R_CLPNS120pp" />
-          <groups:member groups:idRef="R_2AGPGAT120" />
-          <groups:member groups:idRef="R_LPLIPAL2ATE120" />
-          <groups:member groups:idRef="R_LPLIPAL2ATE140" />
-          <groups:member groups:idRef="R_LPLIPAL2ATE160" />
-          <groups:member groups:idRef="R_LPLIPAL2ATE180" />
-          <groups:member groups:idRef="R_LPLIPAL2ATE141" />
-          <groups:member groups:idRef="R_LPLIPAL2ATE161" />
-          <groups:member groups:idRef="R_LPLIPAL2ATE181" />
-          <groups:member groups:idRef="R_PGPP140pp" />
-          <groups:member groups:idRef="R_PGPP141pp" />
-          <groups:member groups:idRef="R_PGPP160pp" />
-          <groups:member groups:idRef="R_PGPP180pp" />
-          <groups:member groups:idRef="R_CLPNH141pp" />
-          <groups:member groups:idRef="R_CLPNH160pp" />
-          <groups:member groups:idRef="R_CLPNH161pp" />
-          <groups:member groups:idRef="R_CLPNH181pp" />
-          <groups:member groups:idRef="R_PLIPA1E180pp" />
-          <groups:member groups:idRef="R_PLIPA1G140pp" />
-          <groups:member groups:idRef="R_PLIPA1G161pp" />
-          <groups:member groups:idRef="R_CLPNS160pp" />
-          <groups:member groups:idRef="R_CLPNS161pp" />
-          <groups:member groups:idRef="R_PAPA120pp" />
-          <groups:member groups:idRef="R_PAPA140pp" />
-          <groups:member groups:idRef="R_PAPA141pp" />
-          <groups:member groups:idRef="R_PAPA160pp" />
-          <groups:member groups:idRef="R_PAPA161pp" />
-          <groups:member groups:idRef="R_PAPA180pp" />
-          <groups:member groups:idRef="R_GPDDA3" />
-          <groups:member groups:idRef="R_PLIPA1A181pp" />
-          <groups:member groups:idRef="R_LPLIPAL2A141" />
-          <groups:member groups:idRef="R_G3PAT141" />
-          <groups:member groups:idRef="R_G3PAT181" />
-          <groups:member groups:idRef="R_DASYN140" />
-          <groups:member groups:idRef="R_DASYN180" />
-          <groups:member groups:idRef="R_DASYN141" />
-          <groups:member groups:idRef="R_CDAPPA160" />
-          <groups:member groups:idRef="R_CDAPPA141" />
-          <groups:member groups:idRef="R_PGSA141" />
-          <groups:member groups:idRef="R_AGPAT120" />
-          <groups:member groups:idRef="R_PGPP120" />
-          <groups:member groups:idRef="R_DAGK120" />
-          <groups:member groups:idRef="R_PSSA180" />
-          <groups:member groups:idRef="R_PSSA161" />
-          <groups:member groups:idRef="R_PSSA141" />
-          <groups:member groups:idRef="R_PSD160" />
-          <groups:member groups:idRef="R_PSD161" />
-          <groups:member groups:idRef="R_PSD180" />
-          <groups:member groups:idRef="R_PLIPA2A140pp" />
-          <groups:member groups:idRef="R_PLIPA2A141pp" />
-          <groups:member groups:idRef="R_PLIPA2A180pp" />
-          <groups:member groups:idRef="R_LPLIPAL1E141pp" />
-          <groups:member groups:idRef="R_LPLIPAL1E160pp" />
-          <groups:member groups:idRef="R_LPLIPAL1E180pp" />
-          <groups:member groups:idRef="R_LPLIPAL1E181pp" />
-          <groups:member groups:idRef="R_LPLIPAL1G160pp" />
-          <groups:member groups:idRef="R_LPLIPAL1G161pp" />
-          <groups:member groups:idRef="R_LPLIPAL1G120pp" />
-          <groups:member groups:idRef="R_PLIPA2E140pp" />
-          <groups:member groups:idRef="R_PLIPA2E160pp" />
-          <groups:member groups:idRef="R_PLIPA2A161pp" />
-          <groups:member groups:idRef="R_PLIPA2A181pp" />
-          <groups:member groups:idRef="R_ALR4x" />
-          <groups:member groups:idRef="R_LPLIPAL1G141pp" />
-          <groups:member groups:idRef="R_LPLIPAL1G180pp" />
-          <groups:member groups:idRef="R_LPLIPAL1G181pp" />
-          <groups:member groups:idRef="R_PLIPA2E141pp" />
-          <groups:member groups:idRef="R_PLIPA2E181pp" />
-          <groups:member groups:idRef="R_PLIPA2G140pp" />
-          <groups:member groups:idRef="R_PLIPA2G160pp" />
-          <groups:member groups:idRef="R_PLIPA2G181pp" />
-          <groups:member groups:idRef="R_G3PAT140" />
-          <groups:member groups:idRef="R_G3PAT160" />
-          <groups:member groups:idRef="R_G3PAT161" />
-          <groups:member groups:idRef="R_AGPAT160" />
-          <groups:member groups:idRef="R_CDAPPA140" />
-          <groups:member groups:idRef="R_PSD140" />
-          <groups:member groups:idRef="R_CDAPPA181" />
-          <groups:member groups:idRef="R_PGSA140" />
-          <groups:member groups:idRef="R_LPLIPAL1A141pp" />
-          <groups:member groups:idRef="R_LPLIPAL1A180pp" />
-          <groups:member groups:idRef="R_LPLIPAL1E140pp" />
-          <groups:member groups:idRef="R_LPLIPAL1E161pp" />
-          <groups:member groups:idRef="R_LPLIPAL1G140pp" />
-          <groups:member groups:idRef="R_PGPP120pp" />
-          <groups:member groups:idRef="R_PGPP181pp" />
-          <groups:member groups:idRef="R_CLPNH120pp" />
-          <groups:member groups:idRef="R_CLPNH140pp" />
-          <groups:member groups:idRef="R_PGSA181" />
-          <groups:member groups:idRef="R_PGPP140" />
-          <groups:member groups:idRef="R_PGPP141" />
-          <groups:member groups:idRef="R_G3PAT180" />
-          <groups:member groups:idRef="R_AGPAT140" />
-          <groups:member groups:idRef="R_PGSA160" />
-          <groups:member groups:idRef="R_PGSA161" />
-          <groups:member groups:idRef="R_PGPP160" />
-          <groups:member groups:idRef="R_PGPP180" />
-          <groups:member groups:idRef="R_PGPP161" />
-          <groups:member groups:idRef="R_PGPP181" />
-          <groups:member groups:idRef="R_CDAPPA180" />
-          <groups:member groups:idRef="R_PSD141" />
-          <groups:member groups:idRef="R_PAPA181pp" />
-          <groups:member groups:idRef="R_CLPNS140pp" />
-          <groups:member groups:idRef="R_CLPNS141pp" />
-          <groups:member groups:idRef="R_CFAS160E" />
-          <groups:member groups:idRef="R_CFAS180E" />
-          <groups:member groups:idRef="R_CFAS180G" />
-          <groups:member groups:idRef="R_PAPA160" />
-          <groups:member groups:idRef="R_PAPA180" />
-          <groups:member groups:idRef="R_PAPA181" />
-          <groups:member groups:idRef="R_PSSA160" />
-          <groups:member groups:idRef="R_PSSA181" />
-          <groups:member groups:idRef="R_DAGK140" />
-          <groups:member groups:idRef="R_DAGK160" />
-          <groups:member groups:idRef="R_DAGK141" />
-          <groups:member groups:idRef="R_DAGK161" />
-          <groups:member groups:idRef="R_AGPAT181" />
-          <groups:member groups:idRef="R_PLIPA1E141pp" />
-          <groups:member groups:idRef="R_PLIPA1G160pp" />
-          <groups:member groups:idRef="R_PLIPA1G141pp" />
-          <groups:member groups:idRef="R_LPLIPAL2E160" />
-          <groups:member groups:idRef="R_LPLIPAL2G140" />
-          <groups:member groups:idRef="R_LPLIPAL2G160" />
-          <groups:member groups:idRef="R_LPLIPAL2G120" />
-          <groups:member groups:idRef="R_PGPP161pp" />
-          <groups:member groups:idRef="R_PAPA140" />
-          <groups:member groups:idRef="R_PAPA141" />
-          <groups:member groups:idRef="R_PAPA161" />
-          <groups:member groups:idRef="R_PLIPA2A120pp" />
-          <groups:member groups:idRef="R_PLIPA2A160pp" />
-          <groups:member groups:idRef="R_CLPNH180pp" />
-          <groups:member groups:idRef="R_LPLIPAL2E120" />
-          <groups:member groups:idRef="R_AGPAT180" />
-          <groups:member groups:idRef="R_AGPAT141" />
-          <groups:member groups:idRef="R_AGPAT161" />
-          <groups:member groups:idRef="R_DASYN120" />
-          <groups:member groups:idRef="R_CDAPPA120" />
-          <groups:member groups:idRef="R_PSSA120" />
-          <groups:member groups:idRef="R_PSD120" />
-          <groups:member groups:idRef="R_PAPA120" />
-          <groups:member groups:idRef="R_PSD181" />
-          <groups:member groups:idRef="R_DAGK180" />
-          <groups:member groups:idRef="R_DAGK181" />
-          <groups:member groups:idRef="R_PLIPA2E120pp" />
-          <groups:member groups:idRef="R_PLIPA2G141pp" />
-          <groups:member groups:idRef="R_PLIPA2G161pp" />
-          <groups:member groups:idRef="R_LPLIPAL1A120pp" />
-          <groups:member groups:idRef="R_LPLIPAL1A140pp" />
-          <groups:member groups:idRef="R_LPLIPAL1A181pp" />
-          <groups:member groups:idRef="R_LPLIPAL1E120pp" />
-          <groups:member groups:idRef="R_G3PAT120" />
-          <groups:member groups:idRef="R_PGSA120" />
-          <groups:member groups:idRef="R_LPLIPAL2A140" />
-          <groups:member groups:idRef="R_LPLIPAL2A160" />
-          <groups:member groups:idRef="R_LPLIPAL2A161" />
-          <groups:member groups:idRef="R_LPLIPAL2A180" />
-          <groups:member groups:idRef="R_LPLIPAL2A181" />
-          <groups:member groups:idRef="R_PLIPA1A120pp" />
-          <groups:member groups:idRef="R_PLIPA1A140pp" />
-          <groups:member groups:idRef="R_PLIPA1A141pp" />
-          <groups:member groups:idRef="R_PLIPA1A160pp" />
-          <groups:member groups:idRef="R_PLIPA1A161pp" />
-          <groups:member groups:idRef="R_PLIPA1A180pp" />
-          <groups:member groups:idRef="R_LPLIPAL2A120" />
-          <groups:member groups:idRef="R_PLIPA2E161pp" />
-          <groups:member groups:idRef="R_PLIPA2E180pp" />
-          <groups:member groups:idRef="R_PLIPA2G120pp" />
-          <groups:member groups:idRef="R_PLIPA2G180pp" />
-          <groups:member groups:idRef="R_LPLIPAL1A161pp" />
-          <groups:member groups:idRef="R_LPLIPAL1A160pp" />
-          <groups:member groups:idRef="R_ACPPAT141" />
-          <groups:member groups:idRef="R_ACPPAT161" />
-          <groups:member groups:idRef="R_ACPPAT180" />
-          <groups:member groups:idRef="R_APG3PAT160" />
-          <groups:member groups:idRef="R_APG3PAT161" />
-          <groups:member groups:idRef="R_APG3PAT180" />
-          <groups:member groups:idRef="R_ACPPAT120" />
-          <groups:member groups:idRef="R_ACPPAT160" />
-          <groups:member groups:idRef="R_ACPPAT181" />
-          <groups:member groups:idRef="R_APH141" />
-          <groups:member groups:idRef="R_APH161" />
-          <groups:member groups:idRef="R_APH180" />
-          <groups:member groups:idRef="R_APH181" />
-          <groups:member groups:idRef="R_APG3PAT120" />
-          <groups:member groups:idRef="R_APH120" />
-          <groups:member groups:idRef="R_ACPPAT140" />
-          <groups:member groups:idRef="R_APG3PAT140" />
-          <groups:member groups:idRef="R_APG3PAT141" />
-          <groups:member groups:idRef="R_APG3PAT181" />
-          <groups:member groups:idRef="R_APH140" />
-          <groups:member groups:idRef="R_APH160" />
-        </groups:listOfMembers>
-      </groups:group>
-      <groups:group groups:id="g32" groups:kind="partonomy" groups:name="Transport, Inner Membrane" sboTerm="SBO:0000633">
-        <groups:listOfMembers>
-          <groups:member groups:idRef="R_NMNt7pp" />
-          <groups:member groups:idRef="R_PYRt2rpp" />
-          <groups:member groups:idRef="R_XANtpp" />
-          <groups:member groups:idRef="R_SUCCt2_2pp" />
-          <groups:member groups:idRef="R_SUCFUMtpp" />
-          <groups:member groups:idRef="R_SUCptspp" />
-          <groups:member groups:idRef="R_TARTRt7pp" />
-          <groups:member groups:idRef="R_TAURabcpp" />
-          <groups:member groups:idRef="R_THMDt2pp_copy1" />
-          <groups:member groups:idRef="R_AKGt2rpp" />
-          <groups:member groups:idRef="R_XYLt2pp" />
-          <groups:member groups:idRef="R_THMabcpp" />
-          <groups:member groups:idRef="R_THMDt2pp_copy2" />
-          <groups:member groups:idRef="R_THRabcpp" />
-          <groups:member groups:idRef="R_TREptspp" />
-          <groups:member groups:idRef="R_TRPt2rpp" />
-          <groups:member groups:idRef="R_TYRt2rpp" />
-          <groups:member groups:idRef="R_URIt2pp_copy1" />
-          <groups:member groups:idRef="R_URIt2pp_copy2" />
-          <groups:member groups:idRef="R_VALabcpp" />
-          <groups:member groups:idRef="R_XTSNt2rpp" />
-          <groups:member groups:idRef="R_XYLabcpp" />
-          <groups:member groups:idRef="R_XYLUt2pp" />
-          <groups:member groups:idRef="R_THRt4pp" />
-          <groups:member groups:idRef="R_CBL1abcpp" />
-          <groups:member groups:idRef="R_ACACt2pp" />
-          <groups:member groups:idRef="R_ACGAptspp" />
-          <groups:member groups:idRef="R_ACMANAptspp" />
-          <groups:member groups:idRef="R_ACNAMt2pp" />
-          <groups:member groups:idRef="R_ARBt2rpp" />
-          <groups:member groups:idRef="R_DAPabcpp" />
-          <groups:member groups:idRef="R_CO2tpp" />
-          <groups:member groups:idRef="R_DHAtpp" />
-          <groups:member groups:idRef="R_ARGabcpp" />
-          <groups:member groups:idRef="R_ARGAGMt7pp" />
-          <groups:member groups:idRef="R_ASCBptspp" />
-          <groups:member groups:idRef="R_ASNt2rpp" />
-          <groups:member groups:idRef="R_ASPabcpp" />
-          <groups:member groups:idRef="R_ASPt2pp" />
-          <groups:member groups:idRef="R_ASPt2_2pp" />
-          <groups:member groups:idRef="R_ASPt2_3pp" />
-          <groups:member groups:idRef="R_GALCTt2rpp" />
-          <groups:member groups:idRef="R_GALt2pp" />
-          <groups:member groups:idRef="R_ABUTt2pp" />
-          <groups:member groups:idRef="R_CYSabcpp" />
-          <groups:member groups:idRef="R_SBTptspp" />
-          <groups:member groups:idRef="R_ACALDtpp" />
-          <groups:member groups:idRef="R_ACt2rpp" />
-          <groups:member groups:idRef="R_ACt4pp" />
-          <groups:member groups:idRef="R_ADEt2rpp" />
-          <groups:member groups:idRef="R_ADNt2pp_copy1" />
-          <groups:member groups:idRef="R_ADNt2pp_copy2" />
-          <groups:member groups:idRef="R_ALAabcpp" />
-          <groups:member groups:idRef="R_ALLabcpp" />
-          <groups:member groups:idRef="R_ALLTNt2rpp" />
-          <groups:member groups:idRef="R_ARBabcpp" />
-          <groups:member groups:idRef="R_GUAtpp" />
-          <groups:member groups:idRef="R_HYXNtpp" />
-          <groups:member groups:idRef="R_NACtpp" />
-          <groups:member groups:idRef="R_CITt7pp" />
-          <groups:member groups:idRef="R_CRNt7pp" />
-          <groups:member groups:idRef="R_CHLabcpp" />
-          <groups:member groups:idRef="R_DGSNt2pp" />
-          <groups:member groups:idRef="R_DINSt2pp" />
-          <groups:member groups:idRef="R_DURIt2pp" />
-          <groups:member groups:idRef="R_FRUptspp" />
-          <groups:member groups:idRef="R_FUCtpp" />
-          <groups:member groups:idRef="R_FUMt2_2pp" />
-          <groups:member groups:idRef="R_FUMt2_3pp" />
-          <groups:member groups:idRef="R_CSNt2pp" />
-          <groups:member groups:idRef="R_CYNTt2pp" />
-          <groups:member groups:idRef="R_CYTDt2pp_copy1" />
-          <groups:member groups:idRef="R_CYTDt2pp_copy2" />
-          <groups:member groups:idRef="R_DADNt2pp" />
-          <groups:member groups:idRef="R_DCYTt2pp" />
-          <groups:member groups:idRef="R_DDGLCNt2rpp" />
-          <groups:member groups:idRef="R_CYSabc2pp" />
-          <groups:member groups:idRef="R_CBIuabcpp" />
-          <groups:member groups:idRef="R_BUTt2rpp" />
-          <groups:member groups:idRef="R_CADVtpp" />
-          <groups:member groups:idRef="R_FORtppi" />
-          <groups:member groups:idRef="R_BUTSO3abcpp" />
-          <groups:member groups:idRef="R_ETHSO3abcpp" />
-          <groups:member groups:idRef="R_FEENTERtpp" />
-          <groups:member groups:idRef="R_PTRCt2pp" />
-          <groups:member groups:idRef="R_SULFACabcpp" />
-          <groups:member groups:idRef="R_PHEMEabcpp" />
-          <groups:member groups:idRef="R_METSOX1abcpp" />
-          <groups:member groups:idRef="R_CRNt8pp" />
-          <groups:member groups:idRef="R_CRNt2rpp" />
-          <groups:member groups:idRef="R_CRNDt2rpp" />
-          <groups:member groups:idRef="R_CTBTt2rpp" />
-          <groups:member groups:idRef="R_PACALDt2rpp" />
-          <groups:member groups:idRef="R_LIPOt2pp" />
-          <groups:member groups:idRef="R_INOSTt4pp" />
-          <groups:member groups:idRef="R_METSOX2abcpp" />
-          <groups:member groups:idRef="R_FALDtpp" />
-          <groups:member groups:idRef="R_ISETACabcpp" />
-          <groups:member groups:idRef="R_MSO3abcpp" />
-          <groups:member groups:idRef="R_SKMt2pp" />
-          <groups:member groups:idRef="R_CPGNabcpp" />
-          <groups:member groups:idRef="R_IDONt2rpp" />
-          <groups:member groups:idRef="R_ILEabcpp" />
-          <groups:member groups:idRef="R_INDOLEt2pp" />
-          <groups:member groups:idRef="R_INSt2pp" />
-          <groups:member groups:idRef="R_LYXt2pp" />
-          <groups:member groups:idRef="R_LEUabcpp" />
-          <groups:member groups:idRef="R_L_LACt2rpp" />
-          <groups:member groups:idRef="R_MALt2_2pp" />
-          <groups:member groups:idRef="R_MALt2_3pp" />
-          <groups:member groups:idRef="R_MALTabcpp" />
-          <groups:member groups:idRef="R_MALTHXabcpp" />
-          <groups:member groups:idRef="R_MALTPTabcpp" />
-          <groups:member groups:idRef="R_MALTTRabcpp" />
-          <groups:member groups:idRef="R_MALTTTRabcpp" />
-          <groups:member groups:idRef="R_MAN6Pt6_2pp" />
-          <groups:member groups:idRef="R_MANGLYCptspp" />
-          <groups:member groups:idRef="R_MELIBt2pp" />
-          <groups:member groups:idRef="R_METabcpp" />
-          <groups:member groups:idRef="R_RMNtpp" />
-          <groups:member groups:idRef="R_SERt4pp" />
-          <groups:member groups:idRef="R_SUCCt2_3pp" />
-          <groups:member groups:idRef="R_MNLptspp" />
-          <groups:member groups:idRef="R_NMNPtpp" />
-          <groups:member groups:idRef="R_ORNabcpp" />
-          <groups:member groups:idRef="R_PNTOt4pp" />
-          <groups:member groups:idRef="R_METDabcpp" />
-          <groups:member groups:idRef="R_PROabcpp" />
-          <groups:member groups:idRef="R_PROt2rpp" />
-          <groups:member groups:idRef="R_PROt4pp" />
-          <groups:member groups:idRef="R_PTRCabcpp" />
-          <groups:member groups:idRef="R_ADOCBLabcpp" />
-          <groups:member groups:idRef="R_CRNabcpp" />
-          <groups:member groups:idRef="R_CRNDabcpp" />
-          <groups:member groups:idRef="R_CTBTabcpp" />
-          <groups:member groups:idRef="R_RIBabcpp" />
-          <groups:member groups:idRef="R_MMETt2pp" />
-          <groups:member groups:idRef="R_GLNabcpp" />
-          <groups:member groups:idRef="R_GLUabcpp" />
-          <groups:member groups:idRef="R_GLUABUTt7pp" />
-          <groups:member groups:idRef="R_GLUt2rpp" />
-          <groups:member groups:idRef="R_GLUt4pp" />
-          <groups:member groups:idRef="R_GLYALDtpp" />
-          <groups:member groups:idRef="R_LCTSt3ipp" />
-          <groups:member groups:idRef="R_ARBt3ipp" />
-          <groups:member groups:idRef="R_14GLUCANabcpp" />
-          <groups:member groups:idRef="R_FRUURt2rpp" />
-          <groups:member groups:idRef="R_GLYCAt2rpp" />
-          <groups:member groups:idRef="R_GLYBabcpp" />
-          <groups:member groups:idRef="R_GLYC3Pt6pp" />
-          <groups:member groups:idRef="R_GLYCLTt4pp" />
-          <groups:member groups:idRef="R_GLYCtpp" />
-          <groups:member groups:idRef="R_H2Otpp" />
-          <groups:member groups:idRef="R_HCINNMt2rpp" />
-          <groups:member groups:idRef="R_HISabcpp" />
-          <groups:member groups:idRef="R_HISt2rpp" />
-          <groups:member groups:idRef="R_LYSabcpp" />
-          <groups:member groups:idRef="R_GALTptspp" />
-          <groups:member groups:idRef="R_GALURt2rpp" />
-          <groups:member groups:idRef="R_GLCNt2rpp" />
-          <groups:member groups:idRef="R_GLCptspp" />
-          <groups:member groups:idRef="R_GLCRt2rpp" />
-          <groups:member groups:idRef="R_GLCt2pp" />
-          <groups:member groups:idRef="R_GLCURt2rpp" />
-          <groups:member groups:idRef="R_ACMUMptspp" />
-          <groups:member groups:idRef="R_UREAtpp" />
-          <groups:member groups:idRef="R_XANt2pp" />
-          <groups:member groups:idRef="R_GLYC3Pabcpp" />
-          <groups:member groups:idRef="R_PPPNt2rpp" />
-          <groups:member groups:idRef="R_PTRCORNt7pp" />
-          <groups:member groups:idRef="R_SPMDabcpp" />
-          <groups:member groups:idRef="R_ARBTNabcpp" />
-          <groups:member groups:idRef="R_ASO3t8pp" />
-          <groups:member groups:idRef="R_FORt2pp" />
-          <groups:member groups:idRef="R_GALabcpp" />
-          <groups:member groups:idRef="R_GLYCLTt2rpp" />
-          <groups:member groups:idRef="R_GUAt2pp" />
-          <groups:member groups:idRef="R_HPPPNt2rpp" />
-          <groups:member groups:idRef="R_H2St1pp" />
-          <groups:member groups:idRef="R_MANptspp" />
-          <groups:member groups:idRef="R_ARGORNt7pp" />
-          <groups:member groups:idRef="R_CELBpts" />
-          <groups:member groups:idRef="R_MALTptspp" />
-          <groups:member groups:idRef="R_FRUpts2pp" />
-          <groups:member groups:idRef="R_G6Pt6_2pp" />
-          <groups:member groups:idRef="R_THRt2pp" />
-          <groups:member groups:idRef="R_CYSDabcpp" />
-          <groups:member groups:idRef="R_GLCabcpp" />
-          <groups:member groups:idRef="R_MNt2pp" />
-          <groups:member groups:idRef="R_HOMt2pp" />
-          <groups:member groups:idRef="R_CYStpp" />
-          <groups:member groups:idRef="R_ACSERtpp" />
-          <groups:member groups:idRef="R_2AGPE120tipp" />
-          <groups:member groups:idRef="R_G3PGabcpp" />
-          <groups:member groups:idRef="R_G3PIabcpp" />
-          <groups:member groups:idRef="R_G3PSabcpp" />
-          <groups:member groups:idRef="R_2AGPA120tipp" />
-          <groups:member groups:idRef="R_2AGPG180tipp" />
-          <groups:member groups:idRef="R_URAt2pp" />
-          <groups:member groups:idRef="R_ALAALAabcpp" />
-          <groups:member groups:idRef="R_HEXt2rpp" />
-          <groups:member groups:idRef="R_G3PEabcpp" />
-          <groups:member groups:idRef="R_G3PCabcpp" />
-          <groups:member groups:idRef="R_PROGLYabcpp" />
-          <groups:member groups:idRef="R_GTHRDabcpp" />
-          <groups:member groups:idRef="R_2AGPG140tipp" />
-          <groups:member groups:idRef="R_2AGPG160tipp" />
-          <groups:member groups:idRef="R_2AGPG141tipp" />
-          <groups:member groups:idRef="R_2AGPG161tipp" />
-          <groups:member groups:idRef="R_2AGPG181tipp" />
-          <groups:member groups:idRef="R_PG161abcpp" />
-          <groups:member groups:idRef="R_PGP120abcpp" />
-          <groups:member groups:idRef="R_PGP161abcpp" />
-          <groups:member groups:idRef="R_PGP181abcpp" />
-          <groups:member groups:idRef="R_PA120abcpp" />
-          <groups:member groups:idRef="R_PA160abcpp" />
-          <groups:member groups:idRef="R_PA181abcpp" />
-          <groups:member groups:idRef="R_12DGR141tipp" />
-          <groups:member groups:idRef="R_PG160abcpp" />
-          <groups:member groups:idRef="R_PGP140abcpp" />
-          <groups:member groups:idRef="R_GAMptspp" />
-          <groups:member groups:idRef="R_GSNt2pp" />
-          <groups:member groups:idRef="R_D_LACt2pp" />
-          <groups:member groups:idRef="R_12PPDStpp" />
-          <groups:member groups:idRef="R_H2tpp" />
-          <groups:member groups:idRef="R_PHEt2rpp" />
-          <groups:member groups:idRef="R_MELIBt3ipp" />
-          <groups:member groups:idRef="R_K2L4Aabcpp" />
-          <groups:member groups:idRef="R_12PPDRtpp" />
-          <groups:member groups:idRef="R_GAM6Pt6_2pp" />
-          <groups:member groups:idRef="R_F6Pt6_2pp" />
-          <groups:member groups:idRef="R_PPALtpp" />
-          <groups:member groups:idRef="R_12DGR140tipp" />
-          <groups:member groups:idRef="R_12DGR160tipp" />
-          <groups:member groups:idRef="R_12DGR180tipp" />
-          <groups:member groups:idRef="R_PE141abcpp" />
-          <groups:member groups:idRef="R_PE160abcpp" />
-          <groups:member groups:idRef="R_PE161abcpp" />
-          <groups:member groups:idRef="R_PG140abcpp" />
-          <groups:member groups:idRef="R_PG141abcpp" />
-          <groups:member groups:idRef="R_PG180abcpp" />
-          <groups:member groups:idRef="R_PG181abcpp" />
-          <groups:member groups:idRef="R_PGP141abcpp" />
-          <groups:member groups:idRef="R_PGP160abcpp" />
-          <groups:member groups:idRef="R_PGP180abcpp" />
-          <groups:member groups:idRef="R_PA140abcpp" />
-          <groups:member groups:idRef="R_12DGR120tipp" />
-          <groups:member groups:idRef="R_PG120abcpp" />
-          <groups:member groups:idRef="R_PE140abcpp" />
-          <groups:member groups:idRef="R_2AGPE181tipp" />
-          <groups:member groups:idRef="R_2AGPA140tipp" />
-          <groups:member groups:idRef="R_2AGPA160tipp" />
-          <groups:member groups:idRef="R_2AGPA180tipp" />
-          <groups:member groups:idRef="R_2AGPA141tipp" />
-          <groups:member groups:idRef="R_2AGPE140tipp" />
-          <groups:member groups:idRef="R_2AGPE160tipp" />
-          <groups:member groups:idRef="R_2AGPE180tipp" />
-          <groups:member groups:idRef="R_2AGPE141tipp" />
-          <groups:member groups:idRef="R_2AGPE161tipp" />
-          <groups:member groups:idRef="R_2AGPA161tipp" />
-          <groups:member groups:idRef="R_2AGPA181tipp" />
-          <groups:member groups:idRef="R_2AGPG120tipp" />
-          <groups:member groups:idRef="R_PA141abcpp" />
-          <groups:member groups:idRef="R_PA161abcpp" />
-          <groups:member groups:idRef="R_PA180abcpp" />
-          <groups:member groups:idRef="R_PE120abcpp" />
-          <groups:member groups:idRef="R_PE180abcpp" />
-          <groups:member groups:idRef="R_TDSR1" />
-          <groups:member groups:idRef="R_CGLYabcpp" />
-          <groups:member groups:idRef="R_PE181abcpp" />
-          <groups:member groups:idRef="R_12DGR161tipp" />
-          <groups:member groups:idRef="R_12DGR181tipp" />
-          <groups:member groups:idRef="R_TDSR2" />
-          <groups:member groups:idRef="R_GTHRDabc2pp" />
-          <groups:member groups:idRef="R_GLYBt2pp" />
-          <groups:member groups:idRef="R_DSERt2pp" />
-          <groups:member groups:idRef="R_ALAt4pp" />
-          <groups:member groups:idRef="R_LYSt3pp" />
-          <groups:member groups:idRef="R_CHLt2pp" />
-          <groups:member groups:idRef="R_GLYt4pp" />
-          <groups:member groups:idRef="R_FRULYSt2pp" />
-          <groups:member groups:idRef="R_23DAPPAt2pp" />
-          <groups:member groups:idRef="R_5DGLCNt2rpp" />
-          <groups:member groups:idRef="R_GALCTNt2pp" />
-          <groups:member groups:idRef="R_ARGt3pp" />
-          <groups:member groups:idRef="R_PPAt4pp" />
-          <groups:member groups:idRef="R_OROTt2_2pp" />
-          <groups:member groups:idRef="R_MALDt2_2pp" />
-          <groups:member groups:idRef="R_PSCLYSt2pp" />
-          <groups:member groups:idRef="R_LYSt2pp" />
-          <groups:member groups:idRef="R_GLYt2pp" />
-          <groups:member groups:idRef="R_ALAt2pp" />
-          <groups:member groups:idRef="R_BALAt2pp" />
-          <groups:member groups:idRef="R_DALAt2pp" />
-          <groups:member groups:idRef="R_GALCTNLt2pp" />
-          <groups:member groups:idRef="R_THYMt3pp" />
-          <groups:member groups:idRef="R_ETHAt2pp" />
-          <groups:member groups:idRef="R_ETOHtrpp" />
-          <groups:member groups:idRef="R_LALADGLUtpp" />
-          <groups:member groups:idRef="R_LALALGLUtpp" />
-          <groups:member groups:idRef="R_MEOHtrpp" />
-          <groups:member groups:idRef="R_5MTRtpp" />
-          <groups:member groups:idRef="R_3HPPtpp" />
-          <groups:member groups:idRef="R_BTNt2ipp" />
-          <groups:member groups:idRef="R_ARBTptspp" />
-          <groups:member groups:idRef="R_DMSOtpp" />
-          <groups:member groups:idRef="R_PYDXtpp" />
-          <groups:member groups:idRef="R_SUCASPtpp" />
-          <groups:member groups:idRef="R_SUCMALtpp" />
-          <groups:member groups:idRef="R_PYDXNtpp" />
-          <groups:member groups:idRef="R_PYDAMtpp" />
-          <groups:member groups:idRef="R_TARTt2_3pp" />
-          <groups:member groups:idRef="R_SUCTARTtpp" />
-          <groups:member groups:idRef="R_CHTBSptspp" />
-          <groups:member groups:idRef="R_TRPtipp" />
-          <groups:member groups:idRef="R_TYRtipp" />
-          <groups:member groups:idRef="R_SPMDt3pp" />
-          <groups:member groups:idRef="R_PHEtipp" />
-          <groups:member groups:idRef="R_MALt3pp" />
-          <groups:member groups:idRef="R_CITt3pp" />
-          <groups:member groups:idRef="R_QUIN2tpp" />
-          <groups:member groups:idRef="R_GLYC2Pabcpp" />
-          <groups:member groups:idRef="R_ALAtpp" />
-          <groups:member groups:idRef="R_DXYLONtpp" />
-          <groups:member groups:idRef="R_2DGLCptspp" />
-          <groups:member groups:idRef="R_23DOGULNt4pp" />
-          <groups:member groups:idRef="R_CHLt3pp" />
-          <groups:member groups:idRef="R_GLYBt3pp" />
-          <groups:member groups:idRef="R_AI2tpp" />
-          <groups:member groups:idRef="R_Ftpp" />
-          <groups:member groups:idRef="R_DHPStr" />
-          <groups:member groups:idRef="R_SQtr" />
-          <groups:member groups:idRef="R_CHOLATEtpp" />
-          <groups:member groups:idRef="R_4ABZGLUtr" />
-          <groups:member groups:idRef="R_CYSItpp" />
-          <groups:member groups:idRef="R_PUACGAMtr" />
-          <groups:member groups:idRef="R_LEUt2rpp" />
-          <groups:member groups:idRef="R_LCTStpp" />
-          <groups:member groups:idRef="R_ILEt3pp" />
-          <groups:member groups:idRef="R_METt3pp" />
-          <groups:member groups:idRef="R_GSNt3pp" />
-          <groups:member groups:idRef="R_LEUt3pp" />
-          <groups:member groups:idRef="R_INSt3pp" />
-          <groups:member groups:idRef="R_INDOLEt2rpp" />
-          <groups:member groups:idRef="R_ILEt2rpp" />
-          <groups:member groups:idRef="R_GLYtpp" />
-          <groups:member groups:idRef="R_FADt" />
-          <groups:member groups:idRef="R_AI2abcpp" />
-          <groups:member groups:idRef="R_4HBZt3pp" />
-          <groups:member groups:idRef="R_CH4t2pp" />
-          <groups:member groups:idRef="R_SERtpp" />
-          <groups:member groups:idRef="R_URATEtpp" />
-          <groups:member groups:idRef="R_MEPNabcpp" />
-          <groups:member groups:idRef="R_VALt2rpp" />
-          <groups:member groups:idRef="R_VALt3pp" />
-          <groups:member groups:idRef="R_MN2tipp" />
-          <groups:member groups:idRef="R_PSURItpp" />
-          <groups:member groups:idRef="R_METGLCURt2pp" />
-          <groups:member groups:idRef="R_FMNt" />
-          <groups:member groups:idRef="R_CUt2pp" />
-          <groups:member groups:idRef="R_THRt2rpp" />
-          <groups:member groups:idRef="R_SERt2rpp" />
-          <groups:member groups:idRef="R_URAtpp" />
-          <groups:member groups:idRef="R_ASPtpp" />
-          <groups:member groups:idRef="R_FUMt1pp" />
-          <groups:member groups:idRef="R_SUCCt1pp" />
-        </groups:listOfMembers>
-      </groups:group>
-      <groups:group groups:id="g33" groups:kind="partonomy" groups:name="Transport, Outer Membrane Porin" sboTerm="SBO:0000633">
-        <groups:listOfMembers>
-          <groups:member groups:idRef="R_GLUtex" />
-          <groups:member groups:idRef="R_GLYtex" />
-          <groups:member groups:idRef="R_GLYALDtex" />
-          <groups:member groups:idRef="R_GLYBtex" />
-          <groups:member groups:idRef="R_GLYCtex" />
-          <groups:member groups:idRef="R_GLYC3Ptex" />
-          <groups:member groups:idRef="R_GLYCLTtex" />
-          <groups:member groups:idRef="R_GTPtex" />
-          <groups:member groups:idRef="R_Htex" />
-          <groups:member groups:idRef="R_H2tex" />
-          <groups:member groups:idRef="R_H2Otex" />
-          <groups:member groups:idRef="R_DAPtex" />
-          <groups:member groups:idRef="R_12PPDStex" />
-          <groups:member groups:idRef="R_DDGLCNtex" />
-          <groups:member groups:idRef="R_26DAHtex" />
-          <groups:member groups:idRef="R_HCINNMtex" />
-          <groups:member groups:idRef="R_HPPPNtex" />
-          <groups:member groups:idRef="R_ACtex" />
-          <groups:member groups:idRef="R_ACALDtex" />
-          <groups:member groups:idRef="R_ACMANAtex" />
-          <groups:member groups:idRef="R_ACMUMtex" />
-          <groups:member groups:idRef="R_GALtex" />
-          <groups:member groups:idRef="R_GALCTtex" />
-          <groups:member groups:idRef="R_GALCTNtex" />
-          <groups:member groups:idRef="R_GALTtex" />
-          <groups:member groups:idRef="R_GALURtex" />
-          <groups:member groups:idRef="R_GAMtex" />
-          <groups:member groups:idRef="R_GBBTNtex" />
-          <groups:member groups:idRef="R_HIStex" />
-          <groups:member groups:idRef="R_HXAtex" />
-          <groups:member groups:idRef="R_HYXNtex" />
-          <groups:member groups:idRef="R_IDONtex" />
-          <groups:member groups:idRef="R_ILEtex" />
-          <groups:member groups:idRef="R_INSTtex" />
-          <groups:member groups:idRef="R_Ktex" />
-          <groups:member groups:idRef="R_D_LACtex" />
-          <groups:member groups:idRef="R_FRULYStex" />
-          <groups:member groups:idRef="R_ASPtex" />
-          <groups:member groups:idRef="R_INDOLEtex" />
-          <groups:member groups:idRef="R_L_LACtex" />
-          <groups:member groups:idRef="R_GLCRtex" />
-          <groups:member groups:idRef="R_GLCNtex" />
-          <groups:member groups:idRef="R_GLCURtex" />
-          <groups:member groups:idRef="R_GLNtex" />
-          <groups:member groups:idRef="R_O2tex" />
-          <groups:member groups:idRef="R_OCTAtex" />
-          <groups:member groups:idRef="R_ORNtex" />
-          <groups:member groups:idRef="R_RMNtex" />
-          <groups:member groups:idRef="R_GLCtex_copy1" />
-          <groups:member groups:idRef="R_PHEtex" />
-          <groups:member groups:idRef="R_PItex" />
-          <groups:member groups:idRef="R_PNTOtex" />
-          <groups:member groups:idRef="R_PPPNtex" />
-          <groups:member groups:idRef="R_PPTtex" />
-          <groups:member groups:idRef="R_PTRCtex" />
-          <groups:member groups:idRef="R_PYRtex" />
-          <groups:member groups:idRef="R_DSERtex" />
-          <groups:member groups:idRef="R_SERtex" />
-          <groups:member groups:idRef="R_SO4tex" />
-          <groups:member groups:idRef="R_SPMDtex" />
-          <groups:member groups:idRef="R_SUCCtex" />
-          <groups:member groups:idRef="R_SUCRtex" />
-          <groups:member groups:idRef="R_TARTRtex" />
-          <groups:member groups:idRef="R_TAURtex" />
-          <groups:member groups:idRef="R_THRtex" />
-          <groups:member groups:idRef="R_THMDtex" />
-          <groups:member groups:idRef="R_METDtex" />
-          <groups:member groups:idRef="R_METtex" />
-          <groups:member groups:idRef="R_MNLtex" />
-          <groups:member groups:idRef="R_NAtex" />
-          <groups:member groups:idRef="R_NACtex" />
-          <groups:member groups:idRef="R_NH4tex" />
-          <groups:member groups:idRef="R_BUTtex" />
-          <groups:member groups:idRef="R_CHLtex" />
-          <groups:member groups:idRef="R_CO2tex" />
-          <groups:member groups:idRef="R_CRNtex" />
-          <groups:member groups:idRef="R_DINStex" />
-          <groups:member groups:idRef="R_DMStex" />
-          <groups:member groups:idRef="R_CSNtex" />
-          <groups:member groups:idRef="R_CYNTtex" />
-          <groups:member groups:idRef="R_CYStex" />
-          <groups:member groups:idRef="R_CYTDtex" />
-          <groups:member groups:idRef="R_DCAtex" />
-          <groups:member groups:idRef="R_DGSNtex" />
-          <groups:member groups:idRef="R_LCTStex" />
-          <groups:member groups:idRef="R_LEUtex" />
-          <groups:member groups:idRef="R_LYStex" />
-          <groups:member groups:idRef="R_LYXtex" />
-          <groups:member groups:idRef="R_MANtex" />
-          <groups:member groups:idRef="R_MAN6Ptex" />
-          <groups:member groups:idRef="R_MELIBtex" />
-          <groups:member groups:idRef="R_DMSOtex" />
-          <groups:member groups:idRef="R_FRUtex" />
-          <groups:member groups:idRef="R_FUCtex" />
-          <groups:member groups:idRef="R_FUMtex" />
-          <groups:member groups:idRef="R_FE2tex" />
-          <groups:member groups:idRef="R_NMNtex" />
-          <groups:member groups:idRef="R_NO2tex" />
-          <groups:member groups:idRef="R_GDPtex" />
-          <groups:member groups:idRef="R_TMAtex" />
-          <groups:member groups:idRef="R_TMAOtex" />
-          <groups:member groups:idRef="R_TREtex" />
-          <groups:member groups:idRef="R_TRPtex" />
-          <groups:member groups:idRef="R_TSULtex" />
-          <groups:member groups:idRef="R_TYRtex" />
-          <groups:member groups:idRef="R_URAtex" />
-          <groups:member groups:idRef="R_UREAtex" />
-          <groups:member groups:idRef="R_VALtex" />
-          <groups:member groups:idRef="R_XANtex" />
-          <groups:member groups:idRef="R_XYLtex" />
-          <groups:member groups:idRef="R_ABUTtex" />
-          <groups:member groups:idRef="R_23CAMPtex" />
-          <groups:member groups:idRef="R_23CCMPtex" />
-          <groups:member groups:idRef="R_23CUMPtex" />
-          <groups:member groups:idRef="R_23CGMPtex" />
-          <groups:member groups:idRef="R_3AMPtex" />
-          <groups:member groups:idRef="R_3CMPtex" />
-          <groups:member groups:idRef="R_ETHSO3tex" />
-          <groups:member groups:idRef="R_BUTSO3tex" />
-          <groups:member groups:idRef="R_LIPOtex" />
-          <groups:member groups:idRef="R_GALBDtex" />
-          <groups:member groups:idRef="R_SULFACtex" />
-          <groups:member groups:idRef="R_NOtex" />
-          <groups:member groups:idRef="R_N2Otex" />
-          <groups:member groups:idRef="R_PEAMNtex" />
-          <groups:member groups:idRef="R_PACALDtex" />
-          <groups:member groups:idRef="R_CYANtex" />
-          <groups:member groups:idRef="R_SO3tex" />
-          <groups:member groups:idRef="R_TCYNTtex" />
-          <groups:member groups:idRef="R_METSOX1tex" />
-          <groups:member groups:idRef="R_METSOX2tex" />
-          <groups:member groups:idRef="R_3UMPtex" />
-          <groups:member groups:idRef="R_3GMPtex" />
-          <groups:member groups:idRef="R_DOPAtex" />
-          <groups:member groups:idRef="R_4HOXPACDtex" />
-          <groups:member groups:idRef="R_ETHAtex" />
-          <groups:member groups:idRef="R_G3PStex" />
-          <groups:member groups:idRef="R_ACGAL1Ptex" />
-          <groups:member groups:idRef="R_ACGALtex" />
-          <groups:member groups:idRef="R_GLCUR1Ptex" />
-          <groups:member groups:idRef="R_UDPGLCURtex" />
-          <groups:member groups:idRef="R_ISETACtex" />
-          <groups:member groups:idRef="R_UDPGtex" />
-          <groups:member groups:idRef="R_UDPGALtex" />
-          <groups:member groups:idRef="R_ACGAM1Ptex" />
-          <groups:member groups:idRef="R_UACGAMtex" />
-          <groups:member groups:idRef="R_UDPACGALtex" />
-          <groups:member groups:idRef="R_MSO3tex" />
-          <groups:member groups:idRef="R_GLYC2Ptex" />
-          <groups:member groups:idRef="R_PSERtex" />
-          <groups:member groups:idRef="R_R5Ptex" />
-          <groups:member groups:idRef="R_THRPtex" />
-          <groups:member groups:idRef="R_TYRPtex" />
-          <groups:member groups:idRef="R_CITtex" />
-          <groups:member groups:idRef="R_ACGAtex" />
-          <groups:member groups:idRef="R_G6Ptex" />
-          <groups:member groups:idRef="R_MOBDtex" />
-          <groups:member groups:idRef="R_NI2tex" />
-          <groups:member groups:idRef="R_H2O2tex" />
-          <groups:member groups:idRef="R_ADEtex" />
-          <groups:member groups:idRef="R_AGMtex" />
-          <groups:member groups:idRef="R_ALAtex" />
-          <groups:member groups:idRef="R_BALAtex" />
-          <groups:member groups:idRef="R_DALAtex" />
-          <groups:member groups:idRef="R_AMPtex" />
-          <groups:member groups:idRef="R_ARBtex" />
-          <groups:member groups:idRef="R_ARGtex" />
-          <groups:member groups:idRef="R_ASCBtex" />
-          <groups:member groups:idRef="R_MMETtex" />
-          <groups:member groups:idRef="R_FE3tex" />
-          <groups:member groups:idRef="R_MG2tex" />
-          <groups:member groups:idRef="R_Zn2tex" />
-          <groups:member groups:idRef="R_CD2tex" />
-          <groups:member groups:idRef="R_ASO3tex" />
-          <groups:member groups:idRef="R_MANGLYCtex" />
-          <groups:member groups:idRef="R_FRUURtex" />
-          <groups:member groups:idRef="R_GLYCAtex" />
-          <groups:member groups:idRef="R_COBALT2tex" />
-          <groups:member groups:idRef="R_DIMPtex" />
-          <groups:member groups:idRef="R_XTSNtex" />
-          <groups:member groups:idRef="R_HG2tex" />
-          <groups:member groups:idRef="R_DHAtex" />
-          <groups:member groups:idRef="R_ETOHtex" />
-          <groups:member groups:idRef="R_ACACtex" />
-          <groups:member groups:idRef="R_H2Stex" />
-          <groups:member groups:idRef="R_4PEPTtex" />
-          <groups:member groups:idRef="R_CU2tex" />
-          <groups:member groups:idRef="R_CLtex" />
-          <groups:member groups:idRef="R_PROtex" />
-          <groups:member groups:idRef="R_SBTtex" />
-          <groups:member groups:idRef="R_AKGtex" />
-          <groups:member groups:idRef="R_ALLTNtex" />
-          <groups:member groups:idRef="R_ASNtex" />
-          <groups:member groups:idRef="R_TYMtex" />
-          <groups:member groups:idRef="R_CMPtex" />
-          <groups:member groups:idRef="R_DUMPtex" />
-          <groups:member groups:idRef="R_XMPtex" />
-          <groups:member groups:idRef="R_3PEPTtex" />
-          <groups:member groups:idRef="R_ANHGMtex" />
-          <groups:member groups:idRef="R_FALDtex" />
-          <groups:member groups:idRef="R_CYSDtex" />
-          <groups:member groups:idRef="R_G3PItex" />
-          <groups:member groups:idRef="R_G3PGtex" />
-          <groups:member groups:idRef="R_G3PEtex" />
-          <groups:member groups:idRef="R_G3PCtex" />
-          <groups:member groups:idRef="R_DAMPtex" />
-          <groups:member groups:idRef="R_DCMPtex" />
-          <groups:member groups:idRef="R_DGMPtex" />
-          <groups:member groups:idRef="R_DTMPtex" />
-          <groups:member groups:idRef="R_GMPtex" />
-          <groups:member groups:idRef="R_IMPtex" />
-          <groups:member groups:idRef="R_UMPtex" />
-          <groups:member groups:idRef="R_G1Ptex" />
-          <groups:member groups:idRef="R_SKMtex" />
-          <groups:member groups:idRef="R_MNtex" />
-          <groups:member groups:idRef="R_GAL1Ptex" />
-          <groups:member groups:idRef="R_O2Stex" />
-          <groups:member groups:idRef="R_HOMtex" />
-          <groups:member groups:idRef="R_SO2tex" />
-          <groups:member groups:idRef="R_ACSERtex" />
-          <groups:member groups:idRef="R_ALAALAtex" />
-          <groups:member groups:idRef="R_MALtex" />
-          <groups:member groups:idRef="R_NO3tex" />
-          <groups:member groups:idRef="R_GSNtex" />
-          <groups:member groups:idRef="R_FORtex" />
-          <groups:member groups:idRef="R_RIBtex" />
-          <groups:member groups:idRef="R_THMtex" />
-          <groups:member groups:idRef="R_XYLUtex" />
-          <groups:member groups:idRef="R_ALLtex" />
-          <groups:member groups:idRef="R_34dhpactex" />
-          <groups:member groups:idRef="R_23DAPPAtex" />
-          <groups:member groups:idRef="R_GLCtex_copy2" />
-          <groups:member groups:idRef="R_PPALtex" />
-          <groups:member groups:idRef="R_CA2tex" />
-          <groups:member groups:idRef="R_CUtex" />
-          <groups:member groups:idRef="R_12PPDRtex" />
-          <groups:member groups:idRef="R_F6Ptex" />
-          <groups:member groups:idRef="R_GAMAN6Ptex" />
-          <groups:member groups:idRef="R_PROGLYtex" />
-          <groups:member groups:idRef="R_CGLYtex" />
-          <groups:member groups:idRef="R_GTHOXtex" />
-          <groups:member groups:idRef="R_GTHRDtex" />
-          <groups:member groups:idRef="R_TUNGStex" />
-          <groups:member groups:idRef="R_GALCTNLtex" />
-          <groups:member groups:idRef="R_MALDtex" />
-          <groups:member groups:idRef="R_OROTtex" />
-          <groups:member groups:idRef="R_5DGLCNtex" />
-          <groups:member groups:idRef="R_PPAtex" />
-          <groups:member groups:idRef="R_PSCLYStex" />
-          <groups:member groups:idRef="R_THYMtex" />
-          <groups:member groups:idRef="R_MINCYCtex" />
-          <groups:member groups:idRef="R_DOXRBCNtex" />
-          <groups:member groups:idRef="R_CMtex" />
-          <groups:member groups:idRef="R_LALALGLUtex" />
-          <groups:member groups:idRef="R_5MTRtex" />
-          <groups:member groups:idRef="R_LALADGLUtex" />
-          <groups:member groups:idRef="R_3HPPtex" />
-          <groups:member groups:idRef="R_FUSAtex" />
-          <groups:member groups:idRef="R_QUIN2tex" />
-          <groups:member groups:idRef="R_SELtex" />
-          <groups:member groups:idRef="R_MEOHtex" />
-          <groups:member groups:idRef="R_TTRCYCtex" />
-          <groups:member groups:idRef="R_SLNTtex" />
-          <groups:member groups:idRef="R_TARTRDtex" />
-          <groups:member groups:idRef="R_BTNtex" />
-          <groups:member groups:idRef="R_ARBTtex" />
-          <groups:member groups:idRef="R_PYDXtex" />
-          <groups:member groups:idRef="R_PYDXNtex" />
-          <groups:member groups:idRef="R_PYDAMtex" />
-          <groups:member groups:idRef="R_CHTBStex" />
-          <groups:member groups:idRef="R_CRNDtex" />
-          <groups:member groups:idRef="R_DXYLONtex" />
-          <groups:member groups:idRef="R_PSURItex" />
-          <groups:member groups:idRef="R_URATEtex" />
-          <groups:member groups:idRef="R_Ftex" />
-          <groups:member groups:idRef="R_CYSItex" />
-        </groups:listOfMembers>
-      </groups:group>
-      <groups:group groups:id="g34" groups:kind="partonomy" groups:name="Transport, Outer Membrane" sboTerm="SBO:0000633">
-        <groups:listOfMembers>
-          <groups:member groups:idRef="R_GUAtex" />
-          <groups:member groups:idRef="R_INStex" />
-          <groups:member groups:idRef="R_CPGNtonex" />
-          <groups:member groups:idRef="R_FEENTERtonex" />
-          <groups:member groups:idRef="R_MALTTRtexi" />
-          <groups:member groups:idRef="R_MALTTTRtexi" />
-          <groups:member groups:idRef="R_MALTPTtexi" />
-          <groups:member groups:idRef="R_MALTtexi" />
-          <groups:member groups:idRef="R_GLCtex_copy1" />
-          <groups:member groups:idRef="R_FE3DCITtonex" />
-          <groups:member groups:idRef="R_DCYTtex" />
-          <groups:member groups:idRef="R_DURItex" />
-          <groups:member groups:idRef="R_URItex" />
-          <groups:member groups:idRef="R_ARBTNtex" />
-          <groups:member groups:idRef="R_PHEMEtiex" />
-          <groups:member groups:idRef="R_DDCAtexi" />
-          <groups:member groups:idRef="R_TTDCAtexi" />
-          <groups:member groups:idRef="R_HDCAtexi" />
-          <groups:member groups:idRef="R_OCDCAtexi" />
-          <groups:member groups:idRef="R_OCDCEAtexi" />
-          <groups:member groups:idRef="R_FECRMtonex" />
-          <groups:member groups:idRef="R_ARBTNtonex" />
-          <groups:member groups:idRef="R_ADNtex" />
-          <groups:member groups:idRef="R_FE3HOXtonex" />
-          <groups:member groups:idRef="R_14GLUCANtexi" />
-          <groups:member groups:idRef="R_DADNtex" />
-          <groups:member groups:idRef="R_ACNAMtex" />
-          <groups:member groups:idRef="R_CUt3" />
-          <groups:member groups:idRef="R_TTDCEAtexi" />
-          <groups:member groups:idRef="R_HDCEAtexi" />
-          <groups:member groups:idRef="R_MALTHXtexi" />
-          <groups:member groups:idRef="R_FE3DHBZStonex" />
-          <groups:member groups:idRef="R_FEOXAMtonex" />
-          <groups:member groups:idRef="R_GLCtex_copy2" />
-          <groups:member groups:idRef="R_MINOHPtexi" />
-          <groups:member groups:idRef="R_CMtpp" />
-          <groups:member groups:idRef="R_FUSAtpp" />
-          <groups:member groups:idRef="R_RFAMPtex" />
-          <groups:member groups:idRef="R_MINCYCtpp" />
-          <groups:member groups:idRef="R_DOXRBCNtpp" />
-          <groups:member groups:idRef="R_NOVBCNtpp" />
-          <groups:member groups:idRef="R_NOVBCNtex" />
-          <groups:member groups:idRef="R_TTRCYCtpp" />
-          <groups:member groups:idRef="R_RFAMPtpp" />
-          <groups:member groups:idRef="R_CH4tex" />
-          <groups:member groups:idRef="R_DHPStex" />
-          <groups:member groups:idRef="R_FMNtex" />
-          <groups:member groups:idRef="R_CLBtex" />
-          <groups:member groups:idRef="R_FADtex" />
-          <groups:member groups:idRef="R_2DGLCtex" />
-          <groups:member groups:idRef="R_SQtex" />
-          <groups:member groups:idRef="R_CBL1tonex" />
-          <groups:member groups:idRef="R_CBItonex" />
-          <groups:member groups:idRef="R_CS1tex" />
-          <groups:member groups:idRef="R_ADOCBLtonex" />
-          <groups:member groups:idRef="R_MEPNtex" />
-          <groups:member groups:idRef="R_4ABZGLUtex" />
-          <groups:member groups:idRef="R_METGLCURtex" />
-          <groups:member groups:idRef="R_AI2tex" />
-        </groups:listOfMembers>
-      </groups:group>
-      <groups:group groups:id="g35" groups:kind="partonomy" groups:name="Murein Recycling" sboTerm="SBO:0000633">
-        <groups:listOfMembers>
-          <groups:member groups:idRef="R_ACGAMK" />
-          <groups:member groups:idRef="R_LADGMDH" />
-          <groups:member groups:idRef="R_ALAGLUE" />
-          <groups:member groups:idRef="R_AGM3PA" />
-          <groups:member groups:idRef="R_LALGP" />
-          <groups:member groups:idRef="R_AGM4PApp" />
-          <groups:member groups:idRef="R_AGM4PA" />
-          <groups:member groups:idRef="R_AM4PCP" />
-          <groups:member groups:idRef="R_AM3PA" />
-          <groups:member groups:idRef="R_UM4PCP" />
-          <groups:member groups:idRef="R_3PEPTabcpp" />
-          <groups:member groups:idRef="R_4PEPTabcpp" />
-          <groups:member groups:idRef="R_AGM3Pt2pp" />
-          <groups:member groups:idRef="R_AGM4Pt2pp" />
-          <groups:member groups:idRef="R_AGMt2pp" />
-          <groups:member groups:idRef="R_AGM4PCP" />
-          <groups:member groups:idRef="R_4PCP" />
-          <groups:member groups:idRef="R_4PCPpp" />
-          <groups:member groups:idRef="R_AGM4PCPpp" />
-          <groups:member groups:idRef="R_ANHMK" />
-          <groups:member groups:idRef="R_AGM3PApp" />
-          <groups:member groups:idRef="R_AGM4PH" />
-          <groups:member groups:idRef="R_AM4PA" />
-          <groups:member groups:idRef="R_AGM3PH" />
-          <groups:member groups:idRef="R_ALAALAD" />
-          <groups:member groups:idRef="R_AGMH" />
-          <groups:member groups:idRef="R_MLTGY3pp" />
-          <groups:member groups:idRef="R_MDDEP3pp" />
-          <groups:member groups:idRef="R_MDDEP4pp" />
-          <groups:member groups:idRef="R_MLTGY1pp" />
-          <groups:member groups:idRef="R_MLDEP1pp" />
-          <groups:member groups:idRef="R_MLDEP2pp" />
-          <groups:member groups:idRef="R_MLTGY2pp" />
-          <groups:member groups:idRef="R_MLTGY4pp" />
-          <groups:member groups:idRef="R_MDDEP1pp" />
-          <groups:member groups:idRef="R_MDDEP2pp" />
-          <groups:member groups:idRef="R_UM3PL" />
-          <groups:member groups:idRef="R_UM4PL" />
-        </groups:listOfMembers>
-      </groups:group>
-      <groups:group groups:id="g36" groups:kind="partonomy" groups:name="Biomass and maintenance functions" sboTerm="SBO:0000633">
-        <groups:listOfMembers>
-          <groups:member groups:idRef="R_ATPM" />
-          <groups:member groups:idRef="R_NTP1" />
-        </groups:listOfMembers>
-      </groups:group>
-      <groups:group groups:id="g37" groups:kind="partonomy" groups:name="Murein Biosynthesis" sboTerm="SBO:0000633">
-        <groups:listOfMembers>
-          <groups:member groups:idRef="R_MDDCP1pp" />
-          <groups:member groups:idRef="R_MPTG" />
-          <groups:member groups:idRef="R_MPTG2" />
-          <groups:member groups:idRef="R_MCTP1App" />
-          <groups:member groups:idRef="R_MCTP2App" />
-          <groups:member groups:idRef="R_MCTP1Bpp" />
-          <groups:member groups:idRef="R_MDDCP2pp" />
-          <groups:member groups:idRef="R_MDDCP3pp" />
-          <groups:member groups:idRef="R_MLDCP1App" />
-          <groups:member groups:idRef="R_MLDCP2App" />
-          <groups:member groups:idRef="R_MDDCP5pp" />
-          <groups:member groups:idRef="R_MLDCP2Bpp" />
-          <groups:member groups:idRef="R_MDDCP4pp" />
-          <groups:member groups:idRef="R_MLDCP3App" />
-          <groups:member groups:idRef="R_MLDCP1Bpp" />
-        </groups:listOfMembers>
-      </groups:group>
-      <groups:group groups:id="g38" groups:kind="partonomy" groups:name="Metabolite Repair" sboTerm="SBO:0000633">
-        <groups:listOfMembers>
-          <groups:member groups:idRef="R_NADHXD" />
-          <groups:member groups:idRef="R_NADPHHR" />
-          <groups:member groups:idRef="R_NADPHHS" />
-          <groups:member groups:idRef="R_NADHHS" />
-          <groups:member groups:idRef="R_NADHXE" />
-          <groups:member groups:idRef="R_NADPHXD" />
-          <groups:member groups:idRef="R_NADHHR" />
-          <groups:member groups:idRef="R_NADPHXE" />
-        </groups:listOfMembers>
-      </groups:group>
-    </groups:listOfGroups>
-    <listOfUnitDefinitions>
-      <unitDefinition id="mmol_per_gDW_per_hr" metaid="mmol_per_gDW_per_hr" name="Millimoles per gram (dry weight) per hour">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#mmol_per_gDW_per_hr">
-              <bqbiol:isDescribedBy>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/pubmed/7986045" />
-                </rdf:Bag>
-              </bqbiol:isDescribedBy>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfUnits>
-          <unit exponent="1" kind="mole" metaid="f5661b8d-6283-4344-9cff-c357f659c1e0" multiplier="1" scale="-3">
-            <annotation>
-              <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-                <rdf:Description rdf:about="#f5661b8d-6283-4344-9cff-c357f659c1e0">
-                  <bqbiol:is>
-                    <rdf:Bag>
-                      <rdf:li rdf:resource="http://identifiers.org/unit/UO:0000040" />
-                    </rdf:Bag>
-                  </bqbiol:is>
-                </rdf:Description>
-              </rdf:RDF>
-            </annotation>
-          </unit>
-          <unit exponent="-1" kind="gram" metaid="_77a7f9a6-2a1b-4972-9bc0-87f0b71db5a0" multiplier="1" scale="0">
-            <annotation>
-              <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-                <rdf:Description rdf:about="#_77a7f9a6-2a1b-4972-9bc0-87f0b71db5a0">
-                  <bqbiol:isVersionOf>
-                    <rdf:Bag>
-                      <rdf:li rdf:resource="UO:0000021" />
-                    </rdf:Bag>
-                  </bqbiol:isVersionOf>
-                </rdf:Description>
-              </rdf:RDF>
-            </annotation>
-          </unit>
-          <unit exponent="-1" kind="second" metaid="c3677f8c-ff0c-413c-89a1-88a6441d4a0b" multiplier="3600" scale="0">
-            <annotation>
-              <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-                <rdf:Description rdf:about="#c3677f8c-ff0c-413c-89a1-88a6441d4a0b">
-                  <bqbiol:isVersionOf>
-                    <rdf:Bag>
-                      <rdf:li rdf:resource="http://identifiers.org/unit/UO:0000032" />
-                    </rdf:Bag>
-                  </bqbiol:isVersionOf>
-                </rdf:Description>
-              </rdf:RDF>
-            </annotation>
-          </unit>
-        </listOfUnits>
-      </unitDefinition>
-      <unitDefinition id="substance" name="Millimoles per gram (dry weight)">
-        <listOfUnits>
-          <unit exponent="1" kind="mole" metaid="b1f98136-067c-4654-82b3-e855f11069e4" multiplier="1" scale="-3">
-            <annotation>
-              <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-                <rdf:Description rdf:about="#b1f98136-067c-4654-82b3-e855f11069e4">
-                  <bqbiol:is>
-                    <rdf:Bag>
-                      <rdf:li rdf:resource="http://identifiers.org/unit/UO:0000040" />
-                    </rdf:Bag>
-                  </bqbiol:is>
-                </rdf:Description>
-              </rdf:RDF>
-            </annotation>
-          </unit>
-          <unit exponent="-1" kind="gram" metaid="_4aff4add-234e-4290-b649-63b7ebd3aef7" multiplier="1" scale="0">
-            <annotation>
-              <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-                <rdf:Description rdf:about="#_4aff4add-234e-4290-b649-63b7ebd3aef7">
-                  <bqbiol:isVersionOf>
-                    <rdf:Bag>
-                      <rdf:li rdf:resource="UO:0000021" />
-                    </rdf:Bag>
-                  </bqbiol:isVersionOf>
-                </rdf:Description>
-              </rdf:RDF>
-            </annotation>
-          </unit>
-        </listOfUnits>
-      </unitDefinition>
-      <unitDefinition id="time" name="Hour">
-        <listOfUnits>
-          <unit exponent="1" kind="second" metaid="_93dce132-07ea-44df-b31e-087bc1ac1a47" multiplier="3600" scale="0">
-            <annotation>
-              <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-                <rdf:Description rdf:about="#_93dce132-07ea-44df-b31e-087bc1ac1a47">
-                  <bqbiol:is>
-                    <rdf:Bag>
-                      <rdf:li rdf:resource="http://identifiers.org/unit/UO:0000032" />
-                    </rdf:Bag>
-                  </bqbiol:is>
-                </rdf:Description>
-              </rdf:RDF>
-            </annotation>
-          </unit>
-        </listOfUnits>
-      </unitDefinition>
-    </listOfUnitDefinitions>
-    <listOfCompartments>
-      <compartment constant="true" id="MNXC3" metaid="a0530da8-f221-4dcb-9af9-75b60e9f778b" name="cytosol" sboTerm="SBO:0000290" units="dimensionless">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#a0530da8-f221-4dcb-9af9-75b60e9f778b">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.compartment/c" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </compartment>
-      <compartment constant="true" id="MNXC2" metaid="_9b62c80d-6796-45c5-ad15-e581f1b99725" name="extracellular space" sboTerm="SBO:0000290" units="dimensionless">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#_9b62c80d-6796-45c5-ad15-e581f1b99725">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.compartment/e" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </compartment>
-      <compartment constant="true" id="MNXC19" metaid="_3c6ff210-8f02-4959-ac28-0e3b8207b5fa" name="periplasm" sboTerm="SBO:0000290" units="dimensionless">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#_3c6ff210-8f02-4959-ac28-0e3b8207b5fa">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.compartment/p" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </compartment>
-    </listOfCompartments>
-    <listOfSpecies>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C3H4O7P" hasOnlySubstanceUnits="false" id="M_2pg_c" metaid="M_2pg_c"
-      name="D-Glycerate 2-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2pg_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2pg" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:2-PG" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11651" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1267" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12986" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17835" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21028" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24344" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:39868" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58289" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:88350" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03391" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62707" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00631" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM275" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00482" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C3H4O10P2" hasOnlySubstanceUnits="false" id="M_13dpg_c" metaid="M_13dpg_c"
-      name="3-Phospho-D-glyceroyl phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_13dpg_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/13dpg" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DPG" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11881" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16001" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1658" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20189" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57604" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62758" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00236" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM261" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00203" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C15H19N5O14P2" hasOnlySubstanceUnits="false" id="M_prbamp_c" metaid="M_prbamp_c"
-      name="1-(5-Phosphoribosyl)-AMP">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_prbamp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/prbamp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PHOSPHORIBOSYL-AMP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11195" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18374" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20628" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:37522" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:59457" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7354" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8166" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB12276" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C02741" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1515" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01777" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C10H17O7P2" hasOnlySubstanceUnits="false" id="M_grdp_c" metaid="M_grdp_c"
-      name="Geranyl diphosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_grdp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/grdp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GERANYL-PP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14299" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17211" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24223" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42877" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5332" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58057" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00341" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMPR0102010001" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM100" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00283" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03476" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C2H6S" hasOnlySubstanceUnits="false" id="M_dms_e" metaid="M_dms_e"
-      name="Dimethyl sulfide">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dms_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dms" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-7670" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14168" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14175" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17437" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23800" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44169" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4611" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02303" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00580" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM444" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00450" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C8H15N3O8P" hasOnlySubstanceUnits="false" id="M_fpram_c" metaid="M_fpram_c"
-      name="2-(Formamido)-N1-(5-phospho-D-ribosyl)acetamidine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_fpram_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/fpram" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11474" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18413" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58478" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:971" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06211" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM568" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C9H13N3O4" hasOnlySubstanceUnits="false" id="M_dcyt_p" metaid="M_dcyt_p"
-      name="Deoxycytidine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dcyt_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dcyt" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DEOXYCYTIDINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15698" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19240" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41417" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41430" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41434" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41806" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4407" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00014" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00881" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM704" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00654" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="C4H2O4" hasOnlySubstanceUnits="false" id="M_fum_p" metaid="M_fum_p" name="Fumarate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_fum_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/fum" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:FUM" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14284" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18012" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22956" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22957" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22958" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24122" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24124" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29806" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:36180" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:37154" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:37155" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42511" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42743" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5190" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00134" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00122" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D02308" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM93" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00106" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C9H11NO3" hasOnlySubstanceUnits="false" id="M_tyr__L_p" metaid="M_tyr__L_p"
-      name="L-Tyrosine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_tyr__L_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/tyr__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TYR" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13181" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15277" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17895" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18186" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21411" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27176" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32760" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32761" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32762" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32784" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32785" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32786" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46070" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46161" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58315" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6313" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9800" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00158" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00647" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00082" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01536" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00022" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM76" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00069" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd30745" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="3" fbc:chemicalFormula="C30H27FeN3O15" hasOnlySubstanceUnits="false" id="M_feenter_e" metaid="M_feenter_e"
-      name="Fe-enterobactin">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_feenter_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/feenter" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21133" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28199" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:38151" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4993" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:70745" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06230" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM7354" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C9H15O5N2" hasOnlySubstanceUnits="false" id="M_gg4abut_c" metaid="M_gg4abut_c"
-      name="Gamma-glutamyl-gamma aminobutyric acid">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_gg4abut_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/gg4abut" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-9000" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49260" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58800" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C15767" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1406" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd11408" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-3" fbc:chemicalFormula="C22H33N4O13" hasOnlySubstanceUnits="false" id="M_arbtn_e" metaid="M_arbtn_e"
-      name="Aerobactin minus Fe3">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_arbtn_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/arbtn" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM96506" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15411" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="AsO3" hasOnlySubstanceUnits="false" id="M_aso3_c" metaid="M_aso3_c" name="Arsenite">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_aso3_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/aso3" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-763" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2040" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13857" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22635" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2846" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29242" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29243" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29866" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49899" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49900" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB11620" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06697" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM658" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd04098" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd26385" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-4" fbc:chemicalFormula="C35H52N6O13" hasOnlySubstanceUnits="false" id="M_cpgn_un_e" metaid="M_cpgn_un_e"
-      name="Coprogen unloaded (no Fe(III))">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cpgn_un_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cpgn_un" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2262" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2999" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15438" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C6H12N2O3" hasOnlySubstanceUnits="false" id="M_alaala_e" metaid="M_alaala_e"
-      name="D-Alanyl-D-alanine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_alaala_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/alaala" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-ALA-D-ALA" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12900" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13749" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16576" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20894" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4088" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57822" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03459" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB28680" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00993" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM669" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00731" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C17H29N2O9PRS" hasOnlySubstanceUnits="false" id="M_3ohexACP_c" metaid="M_3ohexACP_c"
-      name="3-Oxohexanoyl-[acyl-carrier protein]">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_3ohexACP_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/3ohexACP" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:3-oxo-hexanoyl-ACPs" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1642" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05746" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07060005" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM25602" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd11486" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C23H39N2O9PRS" hasOnlySubstanceUnits="false" id="M_3ocddec5eACP_c"
-      metaid="M_3ocddec5eACP_c" name="3-oxo-cis-dodec-5-enoyl-[acyl-carrier protein]">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_3ocddec5eACP_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/3ocddec5eACP" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM6837" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15373" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="C57H108O17P2" hasOnlySubstanceUnits="false" id="M_clpn120_p" metaid="M_clpn120_p"
-      name="Cardiolipin (tetradodecanoyl, n-C12:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_clpn120_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/clpn120" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM5078" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C48H86O11P" hasOnlySubstanceUnits="false" id="M_apg141_c" metaid="M_apg141_c"
-      name="Acyl phosphatidylglycerol (n-C14:1)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_apg141_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/apg141" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM7019" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C10H19O2" hasOnlySubstanceUnits="false" id="M_dca_c" metaid="M_dca_c"
-      name="Decanoate (n-C10:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dca_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dca" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM162295" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C6H7O6" hasOnlySubstanceUnits="false" id="M_dkdglcn_c" metaid="M_dkdglcn_c"
-      name="2,5-Diketo-3-deoxy-D-gluconate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dkdglcn_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dkdglcn" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C16H28N2O11" hasOnlySubstanceUnits="false" id="M_chtbs_p" metaid="M_chtbs_p"
-      name="N,N'-diacetylchitobiose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_chtbs_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/chtbs" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CHITOBIOSE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28681" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:3597" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:701011" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62702" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01674" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.glycan/G10336" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1680" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01157" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C31H48O5" hasOnlySubstanceUnits="false" id="M_fusa_p" metaid="M_fusa_p"
-      name="Fusidic acid">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_fusa_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/fusa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-1606" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24133" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29013" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42742" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5201" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:71321" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB15570" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06694" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D04281" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMPR0106040001" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM125818" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd04095" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C7H11O7" hasOnlySubstanceUnits="false" id="M_metglcur_c" metaid="M_metglcur_c"
-      name="1-O-methyl-Beta-D-glucuronate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_metglcur_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/metglcur" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C3H2O6P" hasOnlySubstanceUnits="false" id="M_pep_c" metaid="M_pep_c"
-      name="Phosphoenolpyruvate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pep_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pep" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PHOSPHO-ENOL-PYRUVATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14812" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18021" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26054" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26055" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44894" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44897" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58702" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8147" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00263" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00074" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM73" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00061" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="1" fbc:chemicalFormula="H" hasOnlySubstanceUnits="false" id="M_h_c" metaid="M_h_c" name="H+">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_h_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/h" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PROTON" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10744" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13357" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15378" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24636" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29233" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29234" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5584" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB59597" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00080" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00067" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H10O5" hasOnlySubstanceUnits="false" id="M_rib__D_c" metaid="M_rib__D_c"
-      name="D-Ribose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_rib__D_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/rib__D" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-Ribofuranose" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-Ribopyranose" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13011" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16988" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21078" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4233" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46999" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:47006" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:47013" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00283" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00121" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C21057" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM242" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00105" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C5H9O7P" hasOnlySubstanceUnits="false" id="M_2dr1p_c" metaid="M_2dr1p_c"
-      name="2-Deoxy-D-ribose 1-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2dr1p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2dr1p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DEOXY-D-RIBOSE-1-PHOSPHATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1081" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11563" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19558" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28542" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57259" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58576" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01351" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00672" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM789" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00509" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd26845" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C10H16N3O6S" hasOnlySubstanceUnits="false" id="M_gthrd_c" metaid="M_gthrd_c"
-      name="Reduced glutathione">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_gthrd_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/gthrd" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLUTATHIONE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12402" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14327" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16856" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24334" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42873" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43049" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5437" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57925" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00125" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01463" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06960" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62697" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00051" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00014" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM57" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00042" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C3H7NO2" hasOnlySubstanceUnits="false" id="M_ala__L_e" metaid="M_ala__L_e"
-      name="L-Alanine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ala__L_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ala__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:L-ALPHA-ALANINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13069" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:132498" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13748" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16449" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16977" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21216" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22277" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2539" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32431" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32432" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32439" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32440" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40734" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40735" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46308" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57972" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6171" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:66916" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:76050" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00161" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62251" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00041" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01401" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00012" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM32" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00035" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01003" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C15H25N2O9PRS" hasOnlySubstanceUnits="false" id="M_actACP_c" metaid="M_actACP_c"
-      name="Acetoacetyl-ACP">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_actACP_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/actACP" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:Acetoacetyl-ACP" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:Acetoacetyl-ACPs" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2393" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05744" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1223" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd11488" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C2H3O5P" hasOnlySubstanceUnits="false" id="M_actp_c" metaid="M_actp_c"
-      name="Acetyl phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_actp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/actp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ACETYL-P" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13711" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15350" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22191" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2407" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46262" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01494" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00227" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM280" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00196" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C2H2O6P" hasOnlySubstanceUnits="false" id="M_2pglyc_c" metaid="M_2pglyc_c"
-      name="2-Phosphoglycolate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2pglyc_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2pglyc" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-67" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11652" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1268" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17150" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19763" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19764" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44849" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58033" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00988" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2074" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00727" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C8H20NO6P" hasOnlySubstanceUnits="false" id="M_g3pc_c" metaid="M_g3pc_c"
-      name="Sn-Glycero-3-phosphocholine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_g3pc_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/g3pc" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:L-1-GLYCERO-PHOSPHORYLCHOLINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10646" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12841" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12847" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14343" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16870" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26697" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41458" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:55397" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:76433" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00670" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D07349" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM367" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00507" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C9H10N2" hasOnlySubstanceUnits="false" id="M_dmbzid_c" metaid="M_dmbzid_c"
-      name="5,6-Dimethylbenzimidazole">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dmbzid_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dmbzid" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DIMETHYLBENZIMIDAZOLE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14172" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15890" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20516" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42126" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4620" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03701" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C03114" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1531" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01997" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C10H11N4O15P3" hasOnlySubstanceUnits="false" id="M_xtp_c" metaid="M_xtp_c" name="XTP">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_xtp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/xtp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:XTP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10049" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:59885" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61314" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00700" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1860" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00530" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="2" fbc:chemicalFormula="Cd" hasOnlySubstanceUnits="false" id="M_cd2_c" metaid="M_cd2_c" name="Cadmium">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cd2_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cd2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-1355" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:3290" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48773" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48775" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03638" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C15233" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM4505" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd10924" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="CNS" hasOnlySubstanceUnits="false" id="M_tcynt_p" metaid="M_tcynt_p" name="Thiocyanate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_tcynt_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/tcynt" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-19512" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:HSCN" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15234" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18022" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24926" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24928" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26954" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26956" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29200" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45576" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9550" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01453" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01755" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM762" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01211" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C9H8NO3" hasOnlySubstanceUnits="false" id="M_acanth_c" metaid="M_acanth_c"
-      name="N-Acetylanthranilate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_acanth_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/acanth" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:N-ACETYLANTHRANILATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12465" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16803" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19414" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21602" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32578" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:36555" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7194" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06332" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1939" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03773" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="O2S" hasOnlySubstanceUnits="false" id="M_so2_p" metaid="M_so2_p" name="Sulfur dioxide">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_so2_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/so2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:SULFUR-DIOXIDE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18422" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45789" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8992" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9351" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB34834" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C09306" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D05961" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM4835" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd06201" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="2" fbc:chemicalFormula="Mn" hasOnlySubstanceUnits="false" id="M_mn2_c" metaid="M_mn2_c" name="Manganese">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_mn2_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/mn2" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21435" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25156" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29035" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49749" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01333" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C19610" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2255" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00030" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd20863" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C39H71O8P1" hasOnlySubstanceUnits="false" id="M_pa181_c" metaid="M_pa181_c"
-      name="1,2-dioctadec-11-enoyl-sn-glycerol 3-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pa181_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pa181" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM90511" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15527" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C24H46O9P1" hasOnlySubstanceUnits="false" id="M_2agpg181_p" metaid="M_2agpg181_p"
-      name="2-Acyl-sn-glycero-3-phosphoglycerol (n-C18:1)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2agpg181_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2agpg181" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM3455" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C35H56N7O17P3S" hasOnlySubstanceUnits="false" id="M_tdecoa_c" metaid="M_tdecoa_c"
-      name="Tetradecenoyl-CoA (n-C14:1CoA)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_tdecoa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/tdecoa" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2290" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H6N2O2" hasOnlySubstanceUnits="false" id="M_thym_p" metaid="M_thym_p"
-      name="Thymine C5H6N2O2">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_thym_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/thym" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:THYMINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15247" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17821" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27004" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46017" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9580" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00262" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00178" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM386" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00151" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C20H22N10O15P2S2Mo" hasOnlySubstanceUnits="false" id="M_mocogdp_c" metaid="M_mocogdp_c"
-      name="Molybdopterin guanine dinucleotide">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_mocogdp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/mocogdp" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25374" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30403" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30404" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30405" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30406" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:39830" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44012" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45054" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:60535" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C19928" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM62333" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd21167" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="1" fbc:chemicalFormula="C8H15O" hasOnlySubstanceUnits="false" id="M_octapb_c" metaid="M_octapb_c"
-      name="Octanoate (protein bound)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_octapb_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/octapb" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM147531" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C6H12N2O4S2" hasOnlySubstanceUnits="false" id="M_cysi__L_e" metaid="M_cysi__L_e"
-      name="L Cystine C6H12N2O4S2">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cysi__L_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cysi__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CYSTINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13097" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16283" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21278" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35491" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6209" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:63163" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00192" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00491" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D03636" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM927" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00381" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C3H5O6P" hasOnlySubstanceUnits="false" id="M_dhap_c" metaid="M_dhap_c"
-      name="Dihydroxyacetone phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dhap_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dhap" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DIHYDROXY-ACETONE-PHOSPHATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14341" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14342" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16108" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24355" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:39571" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5454" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57642" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01473" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB11735" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00111" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM77" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00095" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-6" fbc:chemicalFormula="C15H19N5O20P4" hasOnlySubstanceUnits="false" id="M_prbatp_c" metaid="M_prbatp_c"
-      name="1-(5-Phosphoribosyl)-ATP">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_prbatp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/prbatp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PHOSPHORIBOSYL-ATP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11192" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11196" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18263" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18970" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58424" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:59460" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:73183" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:73200" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8167" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03665" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C02739" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1351" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01775" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C20H21N7O7" hasOnlySubstanceUnits="false" id="M_10fthf_c" metaid="M_10fthf_c"
-      name="10-Formyltetrahydrofolate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_10fthf_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/10fthf" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:10-FORMYL-THF" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11304" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15637" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19108" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19109" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57454" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:698" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00972" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00234" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM237" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00201" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C4H8O" hasOnlySubstanceUnits="false" id="M_btal_c" metaid="M_btal_c"
-      name="Butanal C4H8O">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_btal_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/btal" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:BUTANAL" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13923" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15743" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22938" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:3233" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03543" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01412" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1017" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01011" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C12H21O14P" hasOnlySubstanceUnits="false" id="M_6pgg_c" metaid="M_6pgg_c"
-      name="6-Phospho-beta-D-glucosyl-(1,4)-D-glucose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_6pgg_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/6pgg" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM147389" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="CO2" hasOnlySubstanceUnits="false" id="M_co2_e" metaid="M_co2_e" name="CO2 CO2">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_co2_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/co2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CARBON-DIOXIDE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13282" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13283" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13284" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13285" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16526" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23011" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:3283" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48829" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01967" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00011" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00004" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM13" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00011" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-2" fbc:chemicalFormula="C5H4O5" hasOnlySubstanceUnits="false" id="M_akg_e" metaid="M_akg_e"
-      name="2-Oxoglutarate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_akg_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/akg" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:2-KETOGLUTARATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-16852" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11638" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1253" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16810" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19748" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19749" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30915" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30916" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40661" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62781" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00026" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM20" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00024" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C10H13N5O5" hasOnlySubstanceUnits="false" id="M_gsn_e" metaid="M_gsn_e" name="Guanosine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_gsn_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/gsn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GUANOSINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14375" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16750" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24444" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42840" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42847" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42853" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:471737" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5564" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00133" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00387" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM401" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00311" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C8H8NO6P" hasOnlySubstanceUnits="false" id="M_pydx5p_c" metaid="M_pydx5p_c"
-      name="Pyridoxal 5'-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pydx5p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pydx5p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PYRIDOXAL_PHOSPHATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14977" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18405" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:234571" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26424" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:358848" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45145" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:597326" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8668" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01491" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00018" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM161" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00016" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C6H8O10P" hasOnlySubstanceUnits="false" id="M_3dhgulnp_c" metaid="M_3dhgulnp_c"
-      name="3-keto-L-gulonate-6-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_3dhgulnp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/3dhgulnp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-2343" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49039" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58774" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C14899" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1170" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd10596" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C6H13NO8P" hasOnlySubstanceUnits="false" id="M_g3ps_c" metaid="M_g3ps_c"
-      name="Glycerophosphoserine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_g3ps_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/g3ps" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2030" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61931" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:62013" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:64765" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:64945" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM97117" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15468" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C17H25N5O16P2" hasOnlySubstanceUnits="false" id="M_adphep_LD_c" metaid="M_adphep_LD_c"
-      name="ADP-L-glycero-D-manno-heptose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_adphep_LD_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/adphep_LD" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ADP-L-GLYCERO-D-MANNO-HEPTOSE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13226" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15915" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20844" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2347" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57564" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61506" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61530" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06398" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM857" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03831" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H10O5" hasOnlySubstanceUnits="false" id="M_lyx__L_c" metaid="M_lyx__L_c"
-      name="L-Lyxose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_lyx__L_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/lyx__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-15867" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:62321" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01508" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM4641" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01067" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C10H12N4O4" hasOnlySubstanceUnits="false" id="M_din_p" metaid="M_din_p"
-      name="Deoxyinosine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_din_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/din" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DEOXYINOSINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19248" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23629" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28997" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:39841" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43293" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43436" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43437" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4413" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00071" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05512" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM935" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03279" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C12H22O11" hasOnlySubstanceUnits="false" id="M_malt_p" metaid="M_malt_p"
-      name="Maltose C12H22O11">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_malt_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/malt" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ALPHA-MALTOSE" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:MALTOSE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10300" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12340" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14568" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17306" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18167" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22463" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25144" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43893" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6668" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00208" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00897" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00044" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.glycan/G00275" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM165" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00179" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00665" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C9H9O2" hasOnlySubstanceUnits="false" id="M_pppn_p" metaid="M_pppn_p"
-      name="Phenylpropanoate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pppn_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pppn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:3-PHENYLPROPIONATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20186" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20187" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26002" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26005" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28631" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43112" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:51057" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8103" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00764" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05629" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1403" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03343" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-8" fbc:chemicalFormula="C131H231N2O60P3" hasOnlySubstanceUnits="false" id="M_hphhlipa_c" metaid="M_hphhlipa_c"
-      name="Heptosyl-phospho-heptosyl-heptosyl-kdo2-lipidA">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_hphhlipa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/hphhlipa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2238" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM56168" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15488" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-10" fbc:chemicalFormula="C131H230N2O63P4" hasOnlySubstanceUnits="false" id="M_phphhlipa_c"
-      metaid="M_phphhlipa_c" name="Phospho-heptosyl-phospho-heptosyl-heptosyl-kdo2-lipidA">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_phphhlipa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/phphhlipa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2239" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM75133" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15550" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-4" fbc:chemicalFormula="C71H107N13O38" hasOnlySubstanceUnits="false" id="M_murein3px4p_p"
-      metaid="M_murein3px4p_p" name="Two disacharide linked murein units, tripeptide crosslinked tetrapeptide (A2pm-&gt;D-ala) (middle of chain)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_murein3px4p_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/murein3px4p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2273" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM88341" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15503" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C21H39O7P1" hasOnlySubstanceUnits="false" id="M_1odec11eg3p_c" metaid="M_1odec11eg3p_c"
-      name="1-octadec-11-enoyl-sn-glycerol 3-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_1odec11eg3p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/1odec11eg3p" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM91049" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15328" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C39H72O5" hasOnlySubstanceUnits="false" id="M_12dgr181_p" metaid="M_12dgr181_p"
-      name="1,2-Diacyl-sn-glycerol (dioctadec-11-enoyl, n-C18:1)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_12dgr181_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/12dgr181" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM3775" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="XH2" hasOnlySubstanceUnits="false" id="M_dsbdrd_c" metaid="M_dsbdrd_c"
-      name="Fused thiol:disulfide interchange protein (reduced)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dsbdrd_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dsbdrd" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM8620" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15451" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C3H5O5S" hasOnlySubstanceUnits="false" id="M_sla_c" metaid="M_sla_c"
-      name="Sulpholactaldehyde">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_sla_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/sla" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C17H20N4O6" hasOnlySubstanceUnits="false" id="M_ribflv_p" metaid="M_ribflv_p"
-      name="Riboflavin C17H20N4O6">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ribflv_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ribflv" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RIBOFLAVIN" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15044" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17015" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27299" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45214" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:529204" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57986" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8843" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00244" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00255" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00050" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM270" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00220" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C6H12N2O4S2" hasOnlySubstanceUnits="false" id="M_cysi__L_c" metaid="M_cysi__L_c"
-      name="L Cystine C6H12N2O4S2">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cysi__L_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cysi__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CYSTINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13097" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16283" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21278" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35491" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6209" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:63163" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00192" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00491" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D03636" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM927" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00381" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C6H11O9P" hasOnlySubstanceUnits="false" id="M_f1p_c" metaid="M_f1p_c"
-      name="D-Fructose 1-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_f1p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/f1p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-fructofuranose-1-phosphate" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20930" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:37515" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5174" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58674" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01094" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM145568" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00802" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C4H9NO3" hasOnlySubstanceUnits="false" id="M_thr__L_c" metaid="M_thr__L_c"
-      name="L-Threonine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_thr__L_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/thr__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:THR" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13175" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16857" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21403" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26986" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32820" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32822" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32832" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32833" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42083" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45843" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45983" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57926" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6308" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00167" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00188" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00041" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM142" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00161" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C6H9O6" hasOnlySubstanceUnits="false" id="M_2ddglcn_c" metaid="M_2ddglcn_c"
-      name="2-Dehydro-3-deoxy-D-gluconate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2ddglcn_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2ddglcn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:2-DEHYDRO-3-DEOXY-D-GALACTONATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:2-DEHYDRO-3-DEOXY-D-GLUCONATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1056" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1059" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11547" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11550" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17028" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17032" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19527" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19530" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57989" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57990" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01353" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00204" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01216" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01050475" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01050486" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1627" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00176" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00894" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-1" fbc:chemicalFormula="C10H15N2O3S" hasOnlySubstanceUnits="false" id="M_btn_e" metaid="M_btn_e" name="Biotin">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_btn_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/btn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:BIOTIN" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13905" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15956" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22882" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22884" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:3108" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41236" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57586" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00030" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00120" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00029" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM304" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00104" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-1" fbc:chemicalFormula="C18H33O2" hasOnlySubstanceUnits="false" id="M_ocdcea_e" metaid="M_ocdcea_e"
-      name="Octadecenoate (n-C18:1)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ocdcea_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ocdcea" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:OLEATE-CPD" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:104361" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14684" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16196" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25663" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25664" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30823" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44741" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7741" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00712" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D02315" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01030002" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01030763" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01030810" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM306" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00536" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C16H22N2O15P2" hasOnlySubstanceUnits="false" id="M_dtdp4d6dg_c" metaid="M_dtdp4d6dg_c"
-      name="DTDP-4-dehydro-6-deoxy-D-glucose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dtdp4d6dg_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dtdp4d6dg" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DTDP-DEOH-DEOXY-GLUCOSE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10510" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14081" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16128" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23542" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57649" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:62829" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB60081" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C11907" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM451" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00521" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-1" fbc:chemicalFormula="C11H18NO8" hasOnlySubstanceUnits="false" id="M_acmum_e" metaid="M_acmum_e"
-      name="N-Acetylmuramate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_acmum_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/acmum" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:NACMUR" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21615" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28881" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:47965" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:47978" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7212" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB60493" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C02713" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2263" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01757" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C6H12O6" hasOnlySubstanceUnits="false" id="M_man_p" metaid="M_man_p" name="D-Mannose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_man_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/man" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-mannopyranose" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12999" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14575" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16024" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21057" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:33930" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:37684" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4208" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00169" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00159" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM182" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00138" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd27437" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C72H100CoN18O17P" hasOnlySubstanceUnits="false" id="M_adocbl_e" metaid="M_adocbl_e"
-      name="Adenosylcobalamin">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_adocbl_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/adocbl" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ADENOSYLCOBALAMIN" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02086" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00194" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00042" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM90703" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00166" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C12H24N2O10P" hasOnlySubstanceUnits="false" id="M_frulysp_c" metaid="M_frulysp_c"
-      name="Fructoselysine Phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_frulysp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/frulysp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM11605" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15467" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="C9H11N2O8P" hasOnlySubstanceUnits="false" id="M_dump_p" metaid="M_dump_p"
-      name="DUMP C9H11N2O8P">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dump_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dump" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DUMP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10532" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14094" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17622" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19263" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:246422" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42245" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46286" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46288" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:47722" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01409" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00365" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM234" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00299" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-6" fbc:chemicalFormula="C151H234N12O67P2" hasOnlySubstanceUnits="false" id="M_eca4und_p" metaid="M_eca4und_p"
-      name="(enterobacterial common antigen)x4 undecaprenyl-diphosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_eca4und_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/eca4und" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM6545" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15458" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C35H67O8P1" hasOnlySubstanceUnits="false" id="M_pa160_c" metaid="M_pa160_c"
-      name="1,2-dihexadecanoyl-sn-glycerol 3-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pa160_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pa160" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-1422" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:72859" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:73246" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00674" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB07857" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMGP10010027" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM17312" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15524" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd26147" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C44H75N3O15P2" hasOnlySubstanceUnits="false" id="M_cdpdhdec9eg_c"
-      metaid="M_cdpdhdec9eg_c" name="CDP-1,2-dihexadec-9-enoylglycerol">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cdpdhdec9eg_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cdpdhdec9eg" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:104012" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM4508" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15418" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C7H12N2O3" hasOnlySubstanceUnits="false" id="M_progly_c" metaid="M_progly_c"
-      name="L-Prolinylglycine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_progly_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/progly" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2182" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61695" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61696" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:73594" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM7481" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15551" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="C73H132O17P2" hasOnlySubstanceUnits="false" id="M_clpn161_p" metaid="M_clpn161_p"
-      name="Cardiolipin (tetrahexadec-9-enoyl, n-C16:1)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_clpn161_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/clpn161" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-19674" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:104873" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM4501" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="C15H29O7P1" hasOnlySubstanceUnits="false" id="M_1ddecg3p_p" metaid="M_1ddecg3p_p"
-      name="1-dodecanoyl-sn-glycerol 3-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_1ddecg3p_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/1ddecg3p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2200" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:62840" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:72682" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMGP10050015" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM4232" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15325" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="2" fbc:chemicalFormula="Ca" hasOnlySubstanceUnits="false" id="M_ca2_p" metaid="M_ca2_p" name="Calcium">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ca2_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ca2" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22988" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29108" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:3308" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:39123" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48760" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00464" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00076" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C08130" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C12277" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C13140" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C13189" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C17392" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C18381" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D01083" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D01679" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D01723" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM128" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00063" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd29674" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="HS2R" hasOnlySubstanceUnits="false" id="M_iscssh_c" metaid="M_iscssh_c"
-      name="IscS with bound sulfur">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_iscssh_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/iscssh" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM146402" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C31H36N2O11" hasOnlySubstanceUnits="false" id="M_novbcn_p" metaid="M_novbcn_p"
-      name="Novobiocin">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_novbcn_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/novbcn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-15417" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25597" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28368" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44505" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:71339" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7644" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB15185" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05080" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM65002" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03032" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-5" fbc:chemicalFormula="C6H11O16P4" hasOnlySubstanceUnits="false" id="M_rpntp_c" metaid="M_rpntp_c"
-      name="?-D-ribose-1-methylphosphonate-5-triphosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_rpntp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/rpntp" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C19H29N7O10P" hasOnlySubstanceUnits="false" id="M_gmplys_c" metaid="M_gmplys_c"
-      name="GMP-N-?-(N-?-acetyl lysine methyl ester) 5'-phosphoramidate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_gmplys_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/gmplys" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C5H9O8P" hasOnlySubstanceUnits="false" id="M_r5p_c" metaid="M_r5p_c"
-      name="Alpha-D-Ribose 5-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_r5p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/r5p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-15318" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10270" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12331" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18189" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22413" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C03736" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM15900" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd19028" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C5H4O5" hasOnlySubstanceUnits="false" id="M_akg_c" metaid="M_akg_c"
-      name="2-Oxoglutarate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_akg_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/akg" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:2-KETOGLUTARATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-16852" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11638" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1253" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16810" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19748" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19749" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30915" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30916" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40661" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62781" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00026" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM20" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00024" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C2H3O2" hasOnlySubstanceUnits="false" id="M_ac_c" metaid="M_ac_c" name="Acetate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ac_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ac" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ACET" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13704" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15366" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22165" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22169" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2387" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30089" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40480" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40486" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00042" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00033" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00010" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01010002" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM26" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00029" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C6H13N3O3" hasOnlySubstanceUnits="false" id="M_citr__L_c" metaid="M_citr__L_c"
-      name="L-Citrulline">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_citr__L_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/citr__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:L-CITRULLINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13092" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14002" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16349" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18211" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21257" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:3730" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41489" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57743" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6203" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:66922" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00904" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00327" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D07706" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM211" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00274" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C9H7O4" hasOnlySubstanceUnits="false" id="M_34hpp_c" metaid="M_34hpp_c"
-      name="3-(4-Hydroxyphenyl)pyruvate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_34hpp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/34hpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:P-HYDROXY-PHENYLPYRUVATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1118" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11725" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11727" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12016" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1431" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15999" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19599" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20425" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20426" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27683" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:36242" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42422" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:594665" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00707" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06915" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01179" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05350" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM153" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00868" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03174" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C9H12N2O5" hasOnlySubstanceUnits="false" id="M_duri_c" metaid="M_duri_c"
-      name="Deoxyuridine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_duri_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/duri" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DEOXYURIDINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11398" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11572" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14123" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16450" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19261" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23640" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29113" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42178" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4434" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46165" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46289" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46293" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00012" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00526" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM492" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00412" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C3H7NO2" hasOnlySubstanceUnits="false" id="M_ala_B_c" metaid="M_ala_B_c"
-      name="Beta-Alanine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ala_B_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ala_B" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:B-ALANINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10343" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12389" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16958" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22821" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41050" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57966" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:63070" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00056" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00099" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D07561" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM144" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00085" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-1" fbc:chemicalFormula="NO2" hasOnlySubstanceUnits="false" id="M_no2_e" metaid="M_no2_e" name="Nitrite">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_no2_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/no2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:NITRITE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14658" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16301" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25567" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44396" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7585" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02786" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00088" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM107" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00075" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C6H11O9P" hasOnlySubstanceUnits="false" id="M_tag6p__D_c" metaid="M_tag6p__D_c"
-      name="D-Tagatose 6-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_tag6p__D_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/tag6p__D" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TAGATOSE-6-PHOSPHATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13025" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17837" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21097" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4251" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58695" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06873" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01097" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM795" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00805" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C9H9O4" hasOnlySubstanceUnits="false" id="M_dhpppn_c" metaid="M_dhpppn_c"
-      name="3-(2,3-Dihydroxyphenyl)propanoate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dhpppn_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dhpppn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:2-3-DIHYDROXYPHENYL-PROPIONATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11713" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11718" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1419" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18136" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19918" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19919" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46951" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C04044" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM826" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02501" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-2" fbc:chemicalFormula="C6H11O9P" hasOnlySubstanceUnits="false" id="M_g6p_e" metaid="M_g6p_e"
-      name="D-Glucose 6-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_g6p_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/g6p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-glucopyranose-6-phosphate" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14314" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4170" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61548" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01401" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01549" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06793" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00092" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM160" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00079" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd26836" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C16H29O2" hasOnlySubstanceUnits="false" id="M_hdcea_c" metaid="M_hdcea_c"
-      name="Hexadecenoate (n-C16:1)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_hdcea_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/hdcea" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM950" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C8H14NO9P" hasOnlySubstanceUnits="false" id="M_acgam6p_c" metaid="M_acgam6p_c"
-      name="N-Acetyl-D-glucosamine 6-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_acgam6p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/acgam6p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-16168" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:N-ACETYL-D-GLUCOSAMINE-6-P" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12456" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12564" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15784" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21521" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:39577" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49353" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49359" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57513" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7127" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01062" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00357" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM63556" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00293" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C12H16N4O7P2S" hasOnlySubstanceUnits="false" id="M_thmpp_c" metaid="M_thmpp_c"
-      name="Thiamine diphosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_thmpp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/thmpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:THIAMINE-PYROPHOSPHATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15229" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45930" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45931" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49939" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58937" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9532" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62636" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00068" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM256" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00056" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H11NO2" hasOnlySubstanceUnits="false" id="M_val__L_p" metaid="M_val__L_p"
-      name="L-Valine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_val__L_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/val__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:VAL" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13186" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16414" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21417" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27266" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32851" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32852" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32859" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32860" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46282" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46376" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46418" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46484" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57762" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6321" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:87977" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00883" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB34366" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00183" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C16436" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00039" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01100046" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM199" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00156" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15141" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="HO3P" hasOnlySubstanceUnits="false" id="M_ppt_p" metaid="M_ppt_p" name="Phosphonate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ppt_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ppt" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-12755" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-12756" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PHOSPHONATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:X-PHOSPHATE-GROUP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14820" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16215" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26066" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26067" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26081" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29196" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29197" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29258" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29259" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:33462" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:36361" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:39856" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44976" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45060" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45064" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8154" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01443" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06701" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1683" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd04099" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd28344" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C3H3O3" hasOnlySubstanceUnits="false" id="M_pyr_p" metaid="M_pyr_p" name="Pyruvate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pyr_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pyr" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PYRUVATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14987" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15361" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26462" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26466" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32816" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45253" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:86354" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8685" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00243" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62676" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00022" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01060077" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM23" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00020" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="2" fbc:chemicalFormula="Ni" hasOnlySubstanceUnits="false" id="M_ni2_c" metaid="M_ni2_c" name="Nickel">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ni2_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ni2" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25517" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49785" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49786" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02457" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C14711" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C19609" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM3673" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd20862" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="1" fbc:chemicalFormula="C8H12N" hasOnlySubstanceUnits="false" id="M_peamn_p" metaid="M_peamn_p"
-      name="Phenethylamine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_peamn_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/peamn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PHENYLETHYLAMINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14782" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18397" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:225237" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25965" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45001" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:50048" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8063" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB12275" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB60276" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05332" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM660" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03161" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-1" fbc:chemicalFormula="CH3O3S" hasOnlySubstanceUnits="false" id="M_mso3_e" metaid="M_mso3_e"
-      name="Methanesulfonate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_mso3_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/mso3" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-3746" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25224" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27376" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6813" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C11145" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1485" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd08023" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-4" fbc:chemicalFormula="C80H124N16O42" hasOnlySubstanceUnits="false" id="M_murein5p5p_p" metaid="M_murein5p5p_p"
-      name="Two linked disacharide pentapeptide murein units (uncrosslinked, middle of chain)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_murein5p5p_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/murein5p5p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2283" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM88345" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15511" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-2" fbc:chemicalFormula="C4H8NO6P" hasOnlySubstanceUnits="false" id="M_thrp_e" metaid="M_thrp_e"
-      name="L-Threonine O-3-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_thrp_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/thrp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:L-THREONINE-O-3-PHOSPHATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21967" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:31757" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:37525" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45955" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58675" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C12147" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1492" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd08928" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C8H15O2" hasOnlySubstanceUnits="false" id="M_octa_c" metaid="M_octa_c"
-      name="Octanoate (n-C8:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_octa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/octa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-195" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25646" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25648" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28837" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:3373" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44501" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00482" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62511" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06423" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D05220" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01010008" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM750" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03846" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="C21H41O7P1" hasOnlySubstanceUnits="false" id="M_1odecg3p_p" metaid="M_1odecg3p_p"
-      name="1-octadecanoyl-sn-glycerol 3-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_1odecg3p_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/1odecg3p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2113" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:74565" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:74850" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMGP10050005" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM32950" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15329" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-1" fbc:chemicalFormula="C8H13N2O5" hasOnlySubstanceUnits="false" id="M_LalaLglu_e" metaid="M_LalaLglu_e"
-      name="L-alanine-L-glutamate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_LalaLglu_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/LalaLglu" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-1445" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61396" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61565" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C20958" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM4026" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15388" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H10O5" hasOnlySubstanceUnits="false" id="M_mththf_c" metaid="M_mththf_c"
-      name="(2R,4S)-2-methyl-2,3,3,4-tetrahydroxytetrahydrofuran">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_mththf_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/mththf" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-10774" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44800" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C21382" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM30887" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="H4O2S8Fe2R" hasOnlySubstanceUnits="false" id="M_sufbcd_2fe2s_c"
-      metaid="M_sufbcd_2fe2s_c" name="SufBCD with bound [2Fe-2S] cluster">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_sufbcd_2fe2s_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/sufbcd_2fe2s" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM147308" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C20H20N10O13P2S4W" hasOnlySubstanceUnits="false" id="M_bwco_c" metaid="M_bwco_c"
-      name="Tungsten bispterin cofactor">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_bwco_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/bwco" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM148529" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="F" hasOnlySubstanceUnits="false" id="M_f_p" metaid="M_f_p" name="Fluoride">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_f_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/f" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C6H12O6" hasOnlySubstanceUnits="false" id="M_fru_c" metaid="M_fru_c" name="D-Fructose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_fru_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/fru" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-15382" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-Fructopyranose" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:FRU" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:Fructofuranose" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12923" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15824" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20929" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24104" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24110" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28757" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:37714" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:37721" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4118" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4119" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:47424" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48095" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5172" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62538" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00095" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01496" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05003" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C10906" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00114" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM175" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00082" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd19015" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd27040" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C3H7O6P" hasOnlySubstanceUnits="false" id="M_glyc3p_c" metaid="M_glyc3p_c"
-      name="Glycerol 3-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_glyc3p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/glyc3p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLYCEROL-3P" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10648" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12843" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12848" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15978" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26705" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42793" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57597" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00093" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM66" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00080" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C6H9O4" hasOnlySubstanceUnits="false" id="M_2ahbut_c" metaid="M_2ahbut_c"
-      name="(S)-2-Aceto-2-hydroxybutanoate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2ahbut_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2ahbut" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:2-ACETO-2-HYDROXY-BUTYRATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18730" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27681" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:373" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49256" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06854" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06900" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06006" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01050383" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM114220" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd19045" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C3H7NO3" hasOnlySubstanceUnits="false" id="M_ser__L_c" metaid="M_ser__L_c"
-      name="L-Serine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ser__L_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ser__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:SER" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:Serines" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13167" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15081" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17115" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17822" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21387" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26648" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32836" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32837" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32845" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32846" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:33384" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35243" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45440" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45451" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45590" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45597" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45677" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6301" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9116" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00187" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00589" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62263" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00065" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00716" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00016" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01100045" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM53" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00054" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd28171" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd30743" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C9H11N2O9P" hasOnlySubstanceUnits="false" id="M_ump_c" metaid="M_ump_c"
-      name="UMP C9H11N2O9P">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ump_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ump" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:UMP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13508" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13509" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16695" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27231" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46362" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46382" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46385" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:47721" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57865" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9849" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00105" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM80" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00091" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C14H23N3O14P2" hasOnlySubstanceUnits="false" id="M_4c2me_c" metaid="M_4c2me_c"
-      name="4-(cytidine 5'-diphospho)-2-C-methyl-D-erythritol">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_4c2me_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/4c2me" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:4-CYTIDINE-5-DIPHOSPHO-2-C" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11938" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16578" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1770" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57823" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C11435" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1642" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd08287" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H5N5" hasOnlySubstanceUnits="false" id="M_ade_e" metaid="M_ade_e" name="Adenine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ade_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ade" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ADENINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ADENINE-RING" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13733" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16708" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22236" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2470" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40579" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00034" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00147" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00034" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM168" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00128" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd22238" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C6H12O5" hasOnlySubstanceUnits="false" id="M_rmn_e" metaid="M_rmn_e" name="L-Rhamnose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_rmn_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/rmn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-15405" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:L-rhamnopyranose" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:L-rhamnose" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13160" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16055" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21378" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26546" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45427" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57622" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:62345" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:62346" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6292" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00849" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00507" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2967" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00396" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd27379" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C6H9O7" hasOnlySubstanceUnits="false" id="M_2dhguln_c" metaid="M_2dhguln_c"
-      name="2-Dehydro-L-gulonate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2dhguln_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2dhguln" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM114283" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15351" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-1" fbc:chemicalFormula="C6H9O6" hasOnlySubstanceUnits="false" id="M_2ddglcn_e" metaid="M_2ddglcn_e"
-      name="2-Dehydro-3-deoxy-D-gluconate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2ddglcn_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2ddglcn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:2-DEHYDRO-3-DEOXY-D-GALACTONATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:2-DEHYDRO-3-DEOXY-D-GLUCONATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1056" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1059" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11547" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11550" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17028" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17032" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19527" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19530" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57989" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57990" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01353" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00204" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01216" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01050475" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01050486" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1627" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00176" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00894" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H11NO2" hasOnlySubstanceUnits="false" id="M_glyb_e" metaid="M_glyb_e"
-      name="Glycine betaine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_glyb_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/glyb" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:BETAINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12531" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13895" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15264" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17750" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22858" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24370" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27128" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29050" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:3073" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41134" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41139" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00043" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00719" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D07523" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM289" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00540" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-2" fbc:chemicalFormula="C6H8O8" hasOnlySubstanceUnits="false" id="M_glcr_e" metaid="M_glcr_e"
-      name="D-Glucarate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_glcr_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/glcr" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-GLUCARATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12953" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16002" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20980" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20982" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30612" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:33801" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4155" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42731" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB29881" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00818" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01170108" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM744" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00609" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="CHN" hasOnlySubstanceUnits="false" id="M_cyan_c" metaid="M_cyan_c"
-      name="Hydrogen cyanide">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cyan_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cyan" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-13584" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:HCN" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13362" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14038" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17514" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18407" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:36856" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:3969" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41780" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5786" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB60292" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00177" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01326" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C18673" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM254" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00150" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd19012" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="2" fbc:chemicalFormula="Cu" hasOnlySubstanceUnits="false" id="M_cu2_e" metaid="M_cu2_e" name="Copper">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cu2_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cu2" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20882" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23380" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29036" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49550" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00657" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00070" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM632" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00058" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="2" fbc:chemicalFormula="C5H16N2" hasOnlySubstanceUnits="false" id="M_15dap_p" metaid="M_15dap_p"
-      name="1,5-Diaminopentane">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_15dap_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/15dap" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CADAVERINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13928" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18127" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22974" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:3288" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44370" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58384" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02322" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01672" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM943" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01155" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="2" fbc:chemicalFormula="C4H14N2" hasOnlySubstanceUnits="false" id="M_ptrc_p" metaid="M_ptrc_p" name="Putrescine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ptrc_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ptrc" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PUTRESCINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14972" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17148" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26405" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:326268" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45092" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8650" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01414" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB60243" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00134" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM118" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00118" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd12215" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-3" fbc:chemicalFormula="C22H33N4O13" hasOnlySubstanceUnits="false" id="M_arbtn_p" metaid="M_arbtn_p"
-      name="Aerobactin minus Fe3">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_arbtn_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/arbtn" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM96506" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15411" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C8H8O3" hasOnlySubstanceUnits="false" id="M_34dhpac_e" metaid="M_34dhpac_e"
-      name="3,4-Dihydroxyphenylacetaldehyde">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_34dhpac_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/34dhpac" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:34-DIHYDROXYPHENYLACETALDEHYDE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1385" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19888" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27978" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03791" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06256" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06778" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C04043" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1401" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02500" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-1" fbc:chemicalFormula="C19H29N2O12" hasOnlySubstanceUnits="false" id="M_anhgm_e" metaid="M_anhgm_e"
-      name="N-Acetyl-D-glucosamine(anhydrous)N-Acetylmuramic acid">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_anhgm_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/anhgm" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM3060" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15396" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="2" fbc:chemicalFormula="Cu" hasOnlySubstanceUnits="false" id="M_cu2_p" metaid="M_cu2_p" name="Copper">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cu2_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cu2" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20882" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23380" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29036" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49550" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00657" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00070" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM632" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00058" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C36H62O31" hasOnlySubstanceUnits="false" id="M_14glucan_p" metaid="M_14glucan_p"
-      name="1,4-alpha-D-glucan">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_14glucan_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/14glucan" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:1-4-alpha-D-Glucan" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2905" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd21754" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C34H61O13P2" hasOnlySubstanceUnits="false" id="M_pgp141_c" metaid="M_pgp141_c"
-      name="Phosphatidylglycerophosphate (ditetradec-7-enoyl, n-C14:1)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pgp141_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pgp141" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM5271" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="XH2" hasOnlySubstanceUnits="false" id="M_dsbard_p" metaid="M_dsbard_p"
-      name="Periplasmic protein disulfide isomerase I (reduced)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dsbard_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dsbard" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM12618" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15447" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-1" fbc:chemicalFormula="C6H11O7" hasOnlySubstanceUnits="false" id="M_galctn__L_e" metaid="M_galctn__L_e"
-      name="L-Galactonate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_galctn__L_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/galctn__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-1083" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:37425" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:53071" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C15930" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM636" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd14659" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C8H11NO3" hasOnlySubstanceUnits="false" id="M_pydxn_p" metaid="M_pydxn_p"
-      name="Pyridoxine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pydxn_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pydxn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PYRIDOXINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14981" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16709" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26429" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8671" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00239" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02075" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00314" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D08454" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM419" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00263" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C7H5N5O" hasOnlySubstanceUnits="false" id="M_preq0_c" metaid="M_preq0_c"
-      name="7-cyano-7-carbaguanine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_preq0_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/preq0" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:7-CYANO-7-DEAZAGUANINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45075" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:677358" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C15996" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2207" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd14718" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="H4O2S8Fe2R" hasOnlySubstanceUnits="false" id="M_iscu_2fe2s_c" metaid="M_iscu_2fe2s_c"
-      name="IscU with bound [2Fe-2S] cluster">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_iscu_2fe2s_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/iscu_2fe2s" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM147129" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C31H36N2O11" hasOnlySubstanceUnits="false" id="M_novbcn_e" metaid="M_novbcn_e"
-      name="Novobiocin">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_novbcn_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/novbcn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-15417" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25597" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28368" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44505" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:71339" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7644" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB15185" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05080" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM65002" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03032" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="XH" hasOnlySubstanceUnits="false" id="M_flxr_c" metaid="M_flxr_c"
-      name="Flavodoxin reduced">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_flxr_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/flxr" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM6271" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15465" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C12H22O11" hasOnlySubstanceUnits="false" id="M_lcts_c" metaid="M_lcts_c"
-      name="Lactose C12H22O11">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_lcts_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/lcts" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-15971" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-15972" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10296" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10380" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10428" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14497" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17716" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22460" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22760" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22846" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25005" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27755" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27968" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28577" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35463" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:36218" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43665" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:613009" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB41627" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00243" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01970" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00046" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.glycan/G10504" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM362" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00208" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01354" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03809" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C37H60N7O18P3S" hasOnlySubstanceUnits="false" id="M_3ohdcoa_c" metaid="M_3ohdcoa_c"
-      name="3-Oxohexadecanoyl-CoA">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_3ohdcoa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/3ohdcoa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:3-OXOPALMITOYL-COA" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11875" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15491" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1647" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20176" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57349" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06402" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05259" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07050250" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM738" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03114" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H10N2O3" hasOnlySubstanceUnits="false" id="M_gln__L_e" metaid="M_gln__L_e"
-      name="L-Glutamine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_gln__L_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/gln__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLN" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13110" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18050" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21308" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24316" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28300" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32665" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32666" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32678" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32679" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42812" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42814" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42899" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42943" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5432" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58359" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6227" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00641" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00064" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00303" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00015" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM37" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00053" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00253" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C12H22O11" hasOnlySubstanceUnits="false" id="M_tre_e" metaid="M_tre_e" name="Trehalose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_tre_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/tre" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-15990" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TREHALOSE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10202" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12281" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12284" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12287" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15251" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16551" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22365" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27082" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46211" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00975" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01083" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.glycan/G00293" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM198" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00794" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C3H6O3" hasOnlySubstanceUnits="false" id="M_glyald_c" metaid="M_glyald_c"
-      name="D-Glyceraldehyde">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_glyald_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/glyald" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLYCERALD" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12982" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17378" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21025" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:39973" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4186" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00577" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM435" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00448" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C6H14O8P" hasOnlySubstanceUnits="false" id="M_g3pg_c" metaid="M_g3pg_c"
-      name="Glycerophosphoglycerol">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_g3pg_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/g3pg" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLYCEROPHOSPHOGLYCEROL" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5457" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61933" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C03274" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM598" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02090" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C72H100CoN18O17P" hasOnlySubstanceUnits="false" id="M_adocbl_c" metaid="M_adocbl_c"
-      name="Adenosylcobalamin">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_adocbl_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/adocbl" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ADENOSYLCOBALAMIN" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02086" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00194" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00042" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM90703" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00166" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-1" fbc:chemicalFormula="C6H11O7" hasOnlySubstanceUnits="false" id="M_idon__L_e" metaid="M_idon__L_e"
-      name="L-Idonate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_idon__L_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/idon__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:L-IDONATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13126" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17796" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21335" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21336" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57659" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58494" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6250" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00770" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1565" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00573" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="CNS" hasOnlySubstanceUnits="false" id="M_tcynt_c" metaid="M_tcynt_c" name="Thiocyanate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_tcynt_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/tcynt" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-19512" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:HSCN" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15234" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18022" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24926" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24928" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26954" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26956" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29200" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45576" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9550" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01453" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01755" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM762" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01211" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-2" fbc:chemicalFormula="C34H30FeN4O4" hasOnlySubstanceUnits="false" id="M_pheme_e" metaid="M_pheme_e"
-      name="Protoheme C34H30FeN4O4">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pheme_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pheme" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PROTOHEME" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14957" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17627" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26355" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5651" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:60344" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00032" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM249" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C39H66N7O18P3S" hasOnlySubstanceUnits="false" id="M_3hodcoa_c" metaid="M_3hodcoa_c"
-      name="(S)-3-Hydroxyoctadecanoyl-CoA">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_3hodcoa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/3hodcoa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2253" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:50577" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:87561" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07050159" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM31746" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15204" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C6H12O6" hasOnlySubstanceUnits="false" id="M_all__D_e" metaid="M_all__D_e"
-      name="D-Allose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_all__D_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/all__D" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ALLOSE" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-Allopyranose" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4093" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01487" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1919" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01055" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="2" fbc:chemicalFormula="Ca" hasOnlySubstanceUnits="false" id="M_ca2_e" metaid="M_ca2_e" name="Calcium">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ca2_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ca2" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22988" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29108" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:3308" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:39123" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48760" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00464" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00076" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C08130" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C12277" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C13140" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C13189" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C17392" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C18381" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D01083" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D01679" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D01723" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM128" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00063" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd29674" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="2" fbc:chemicalFormula="Fe" hasOnlySubstanceUnits="false" id="M_fe2_p" metaid="M_fe2_p" name="Fe2+ mitochondria">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_fe2_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/fe2" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13319" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13321" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21129" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24876" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29033" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:34754" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49599" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00692" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C14818" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM111" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd10515" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-2" fbc:chemicalFormula="C6H11O9P" hasOnlySubstanceUnits="false" id="M_g1p_e" metaid="M_g1p_e"
-      name="D-Glucose 1-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_g1p_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/g1p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-glucose-1-phosphates" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLC-1-P" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10246" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12320" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12967" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12970" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16077" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21001" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21004" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29042" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4169" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42623" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57629" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58601" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01306" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01586" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00103" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM89588" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00089" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd28817" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-3" fbc:chemicalFormula="C55H89O7P2" hasOnlySubstanceUnits="false" id="M_udcpdp_p" metaid="M_udcpdp_p"
-      name="Undecaprenyl diphosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_udcpdp_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/udcpdp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-9649" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15284" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17047" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27192" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:53042" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57995" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9863" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01469" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMPR03030004" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM5043" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd25775" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="1" fbc:chemicalFormula="Ag" hasOnlySubstanceUnits="false" id="M_ag_e" metaid="M_ag_e" name="Silver">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ag_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ag" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30051" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49467" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49468" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02659" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06710" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM5928" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd04100" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C31H55O8P1" hasOnlySubstanceUnits="false" id="M_pa141_c" metaid="M_pa141_c"
-      name="1,2-ditetradec-7-enoyl-sn-glycerol 3-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pa141_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pa141" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM90512" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15523" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C36H63N3O15P2" hasOnlySubstanceUnits="false" id="M_cdpdddecg_c" metaid="M_cdpdddecg_c"
-      name="CDP-1,2-didodecanoylglycerol">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cdpdddecg_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cdpdddecg" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM4507" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15417" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C33H66N1O8P1" hasOnlySubstanceUnits="false" id="M_pe140_p" metaid="M_pe140_p"
-      name="Phosphatidylethanolamine (ditetradecanoyl, n-C14:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pe140_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pe140" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-17087" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB05313" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB08821" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMGP02010352" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2859" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C18H36O9P1" hasOnlySubstanceUnits="false" id="M_2agpg120_c" metaid="M_2agpg120_c"
-      name="2-Acyl-sn-glycero-3-phosphoglycerol (n-C12:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2agpg120_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2agpg120" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM3450" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C17H34O7P1" hasOnlySubstanceUnits="false" id="M_2tdecg3p_p" metaid="M_2tdecg3p_p"
-      name="2-tetradecanoyl-sn-glycerol 3-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2tdecg3p_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2tdecg3p" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM5491" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15363" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C21H42O7P1" hasOnlySubstanceUnits="false" id="M_2odecg3p_c" metaid="M_2odecg3p_c"
-      name="2-octadecanoyl-sn-glycerol 3-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2odecg3p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2odecg3p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-17274" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB07850" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMGP10050043" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM5481" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15358" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C37H60N7O17P3S" hasOnlySubstanceUnits="false" id="M_hdcoa_c" metaid="M_hdcoa_c"
-      name="Hexadecenoyl-CoA (n-C16:1CoA)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_hdcoa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/hdcoa" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM90167" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-11" fbc:chemicalFormula="C312H523N6O200P4" hasOnlySubstanceUnits="false" id="M_o16a4colipa_e"
-      metaid="M_o16a4colipa_e" name="(O16 antigen)x4 core oligosaccharide lipid A">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_o16a4colipa_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/o16a4colipa" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM91789" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15518" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C61H100O12P2" hasOnlySubstanceUnits="false" id="M_udcpgl_c" metaid="M_udcpgl_c"
-      name="Undecaprenol-diphosphate-glucose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_udcpgl_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/udcpgl" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="CH4O3P" hasOnlySubstanceUnits="false" id="M_mepn_c" metaid="M_mepn_c"
-      name="Methylphosphonic acid">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_mepn_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/mepn" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="CH4O3P" hasOnlySubstanceUnits="false" id="M_mepn_p" metaid="M_mepn_p"
-      name="Methylphosphonic acid">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_mepn_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/mepn" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C7H14N2O4S" hasOnlySubstanceUnits="false" id="M_cyst__L_c" metaid="M_cyst__L_c"
-      name="L-Cystathionine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cyst__L_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cyst__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:L-CYSTATHIONINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13093" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17482" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21259" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58161" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6205" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00099" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03614" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C02291" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM319" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd19019" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C9H11N2O14P3" hasOnlySubstanceUnits="false" id="M_dutp_c" metaid="M_dutp_c"
-      name="DUTP C9H11N2O14P3">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dutp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dutp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DUTP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10533" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14095" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17625" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19264" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58212" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61555" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00460" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM452" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00358" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C13H18N4O6" hasOnlySubstanceUnits="false" id="M_dmlz_c" metaid="M_dmlz_c"
-      name="6,7-Dimethyl-8-(1-D-ribityl)lumazine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dmlz_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dmlz" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DIMETHYL-D-RIBITYL-LUMAZINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12185" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17601" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20682" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2154" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58201" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03826" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C04332" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1313" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02656" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C11H21N2O7PS" hasOnlySubstanceUnits="false" id="M_pan4p_c" metaid="M_pan4p_c"
-      name="Pantetheine 4'-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pan4p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pan4p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PANTETHEINE-P" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PHOSPHOPANTOTHEINE-GROUP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11916" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14735" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14736" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14738" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14825" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16858" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25844" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29890" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4222" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45012" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:47942" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61723" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7914" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01416" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01134" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM373" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00834" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd27792" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C15H21N5O14P2" hasOnlySubstanceUnits="false" id="M_adprib_c" metaid="M_adprib_c"
-      name="ADPribose C15H21N5O14P2">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_adprib_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/adprib" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ADENOSINE_DIPHOSPHATE_RIBOSE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13231" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16960" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20850" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2351" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32889" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40752" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57967" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00301" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01882" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM48596" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00251" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01296" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C7H3NO4" hasOnlySubstanceUnits="false" id="M_quln_c" metaid="M_quln_c"
-      name="Quinolinate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_quln_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/quln" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:QUINOLINATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:132942" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14975" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16675" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26417" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26418" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29959" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44529" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46828" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46832" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46833" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8663" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00232" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C03722" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM555" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02333" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H10O4" hasOnlySubstanceUnits="false" id="M_dxyl_c" metaid="M_dxyl_c"
-      name="1-deoxy-D-xylulose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dxyl_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dxyl" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-1093" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19038" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28354" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:621" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01292" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06257" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2454" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03738" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H8O4" hasOnlySubstanceUnits="false" id="M_dhptd_c" metaid="M_dhptd_c"
-      name="4,5-dihydroxy-2,3-pentanedione">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dhptd_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dhptd" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DIHYDROXYPENTANEDIONE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29484" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C11838" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2449" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd08636" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd08638" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-6" fbc:chemicalFormula="C110H196N2O39P2" hasOnlySubstanceUnits="false" id="M_lipa_c" metaid="M_lipa_c"
-      name="KDO(2)-lipid (A)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_lipa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/lipa" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23656" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27963" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4476" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58540" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06026" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMSL02000001" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM946" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03587" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-8" fbc:chemicalFormula="C42H36FeN4O16" hasOnlySubstanceUnits="false" id="M_sheme_c" metaid="M_sheme_c"
-      name="Siroheme C42H36FeN4O16">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_sheme_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/sheme" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:SIROHEME" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26690" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28599" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:60052" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9166" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00748" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM82173" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00557" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C6H12O6" hasOnlySubstanceUnits="false" id="M_all__D_p" metaid="M_all__D_p"
-      name="D-Allose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_all__D_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/all__D" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ALLOSE" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-Allopyranose" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4093" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01487" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1919" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01055" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="H2O" hasOnlySubstanceUnits="false" id="M_h2o_p" metaid="M_h2o_p" name="H2O H2O">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_h2o_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/h2o" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-15815" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:HYDROXYL-GROUP" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:OH" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:OXONIUM" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:WATER" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10743" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13352" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13365" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13419" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15377" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16234" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27313" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29356" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29373" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29374" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29375" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29412" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30490" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:33806" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:33811" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:33813" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41979" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41981" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42043" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42857" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43228" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44292" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44641" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44701" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44819" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5585" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5594" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02111" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00001" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01328" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C18714" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00001" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D03703" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D06322" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00001" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15275" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd27222" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C16H31O2" hasOnlySubstanceUnits="false" id="M_hdca_p" metaid="M_hdca_p"
-      name="Hexadecanoate (n-C16:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_hdca_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/hdca" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PALMITATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14730" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15756" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:231736" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:233028" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24540" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24541" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24542" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24550" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29889" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35978" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44952" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7896" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00220" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB60083" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00249" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D05341" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01010001" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01010046" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM108" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00214" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="C6H11O9P" hasOnlySubstanceUnits="false" id="M_gal1p_p" metaid="M_gal1p_p"
-      name="Alpha-D-Galactose 1-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_gal1p_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/gal1p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GALACTOSE-1P" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10232" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12305" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12306" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17973" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22374" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42878" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58336" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00645" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03359" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00446" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM336" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00348" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd19025" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H14NO6P" hasOnlySubstanceUnits="false" id="M_g3pe_e" metaid="M_g3pe_e"
-      name="Sn-Glycero-3-phosphoethanolamine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_g3pe_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/g3pe" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:L-1-GLYCEROPHOSPHORYLETHANOL-AMINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10647" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12842" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16929" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26699" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57952" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB59660" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01233" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM368" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00908" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C26H39N5O14" hasOnlySubstanceUnits="false" id="M_anhm3p_c" metaid="M_anhm3p_c"
-      name="1,6-anhydrous-N-Acetylmuramyl-tripeptide">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_anhm3p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/anhm3p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2284" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM32389" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15400" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="C65H124O17P2" hasOnlySubstanceUnits="false" id="M_clpn140_p" metaid="M_clpn140_p"
-      name="Cardiolipin (tetratetradecanoyl, n-C14:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_clpn140_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/clpn140" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-19676" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:62862" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM83974" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C39H76O5" hasOnlySubstanceUnits="false" id="M_12dgr180_p" metaid="M_12dgr180_p"
-      name="1,2-Diacyl-sn-glycerol (dioctadecanoyl, n-C18:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_12dgr180_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/12dgr180" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM4217" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C19H40NO7P1" hasOnlySubstanceUnits="false" id="M_2agpe140_p" metaid="M_2agpe140_p"
-      name="2-Acyl-sn-glycero-3-phosphoethanolamine (n-C14:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2agpe140_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2agpe140" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2165" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB11470" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMGP02050033" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM34809" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd26435" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H10O4" hasOnlySubstanceUnits="false" id="M_5drib_c" metaid="M_5drib_c"
-      name="5'-deoxyribose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_5drib_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/5drib" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2167" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:62012" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM4391" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15380" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd17002" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C4H6N2O4" hasOnlySubstanceUnits="false" id="M_uracp_c" metaid="M_uracp_c"
-      name="Ureidoacrylate peracid">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_uracp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/uracp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2338" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:59889" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C20231" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2304" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd21464" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="1" fbc:chemicalFormula="C7H10N5O" hasOnlySubstanceUnits="false" id="M_preq1_c" metaid="M_preq1_c"
-      name="7-aminomethyl-7-deazaguanine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_preq1_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/preq1" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:7-AMINOMETHYL-7-DEAZAGUANINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45126" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58703" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB11690" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C16675" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM3198" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd19185" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C20H20N10O13P2S4Mo" hasOnlySubstanceUnits="false" id="M_bmoco_c" metaid="M_bmoco_c"
-      name="Bis-molybdenum cofactor">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_bmoco_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/bmoco" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-15874" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM147053" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C30H32N15O20P3S4Mo" hasOnlySubstanceUnits="false" id="M_bmoco1gdp_c"
-      metaid="M_bmoco1gdp_c" name="Bis-molybdopterin mono-guanine dinucleotide">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_bmoco1gdp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/bmoco1gdp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM148110" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-1" fbc:chemicalFormula="F" hasOnlySubstanceUnits="false" id="M_f_e" metaid="M_f_e" name="Fluoride">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_f_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/f" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C11H20O10" hasOnlySubstanceUnits="false" id="M_iprimv_c" metaid="M_iprimv_c"
-      name="Isoprimeverose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_iprimv_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/iprimv" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C9H12N2O6" hasOnlySubstanceUnits="false" id="M_psuri_c" metaid="M_psuri_c"
-      name="Pseudouridine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_psuri_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/psuri" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C5H9O8P" hasOnlySubstanceUnits="false" id="M_xu5p__D_c" metaid="M_xu5p__D_c"
-      name="D-Xylulose 5-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_xu5p__D_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/xu5p__D" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:XYLULOSE-5-PHOSPHATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13036" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16332" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21121" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27354" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4269" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57737" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00868" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06212" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00231" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM186" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00198" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C4H7NO3" hasOnlySubstanceUnits="false" id="M_aspsa_c" metaid="M_aspsa_c"
-      name="L-Aspartate 4-semialdehyde">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_aspsa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/aspsa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:L-ASPARTATE-SEMIALDEHYDE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13086" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13087" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18051" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21245" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40847" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:537519" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6194" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB12249" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00441" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM361" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00346" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C10H12N4O6" hasOnlySubstanceUnits="false" id="M_xtsn_c" metaid="M_xtsn_c"
-      name="Xanthosine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_xtsn_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/xtsn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:XANTHOSINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10066" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15323" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18107" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27327" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00299" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01762" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM687" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01217" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C4H6N4O3" hasOnlySubstanceUnits="false" id="M_alltn_e" metaid="M_alltn_e"
-      name="Allantoin">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_alltn_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/alltn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ALLANTOIN" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13761" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15676" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22354" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2594" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:74345" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00462" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01551" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00121" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM612" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01092" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-2" fbc:chemicalFormula="C6H11O9P" hasOnlySubstanceUnits="false" id="M_f6p_e" metaid="M_f6p_e"
-      name="D-Fructose 6-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_f6p_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/f6p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:FRUCTOSE-6P" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10375" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12352" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16084" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22768" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42378" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57634" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03971" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05345" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM89621" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd19035" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C27H33N9O15P2" hasOnlySubstanceUnits="false" id="M_fadh2_c" metaid="M_fadh2_c"
-      name="Flavin adenine dinucleotide reduced">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_fadh2_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/fadh2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:FADH2" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13316" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17877" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21126" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42427" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4957" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58307" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01352" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM38" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00982" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C9H12N5O7P" hasOnlySubstanceUnits="false" id="M_dhpmp_c" metaid="M_dhpmp_c"
-      name="Dihydroneopterin monophosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dhpmp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dhpmp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DIHYDRONEOPTERIN-P" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23756" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4577" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48954" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58762" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06824" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05925" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1645" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03521" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd29676" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="HO10P3" hasOnlySubstanceUnits="false" id="M_pppi_c" metaid="M_pppi_c"
-      name="Inorganic triphosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pppi_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pppi" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:P3I" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18036" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29203" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:39942" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:39949" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48313" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48314" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48315" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48316" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5926" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9744" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03379" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB12282" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00536" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM332" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00421" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd11672" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd12039" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-1" fbc:chemicalFormula="C18H35O2" hasOnlySubstanceUnits="false" id="M_ocdca_e" metaid="M_ocdca_e"
-      name="Octadecanoate (n-C18:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ocdca_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ocdca" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:STEARIC_ACID" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:231588" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25629" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25631" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28842" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45710" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00827" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01530" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00119" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01010018" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01010047" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM236" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01080" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C2H3O3" hasOnlySubstanceUnits="false" id="M_glyclt_c" metaid="M_glyclt_c"
-      name="Glycolate C2H3O3">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_glyclt_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/glyclt" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLYCOLLATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14348" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17497" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24388" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24390" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29805" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42865" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5475" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00115" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03035" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00160" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM222" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00139" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd12347" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C3H5O5P" hasOnlySubstanceUnits="false" id="M_ppap_c" metaid="M_ppap_c"
-      name="Propanoyl phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ppap_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ppap" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PROPIONYL-P" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58933" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8478" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C02876" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1499" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01844" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C20H24N10O21P4" hasOnlySubstanceUnits="false" id="M_gp4g_c" metaid="M_gp4g_c"
-      name="P1,P4-Bis(5'-guanosyl) tetraphosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_gp4g_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/gp4g" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-609" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12727" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12730" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15883" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21999" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57553" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7876" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01261" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1582" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00925" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H11NO2" hasOnlySubstanceUnits="false" id="M_glyb_c" metaid="M_glyb_c"
-      name="Glycine betaine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_glyb_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/glyb" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:BETAINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12531" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13895" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15264" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17750" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22858" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24370" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27128" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29050" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:3073" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41134" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41139" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00043" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00719" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D07523" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM289" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00540" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C29H38N7O17P3S" hasOnlySubstanceUnits="false" id="M_phaccoa_c" metaid="M_phaccoa_c"
-      name="Phenylacetyl-CoA">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_phaccoa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/phaccoa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-207" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14780" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15537" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25980" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57390" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8086" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06503" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00582" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM502" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00452" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-1" fbc:chemicalFormula="C4H7O2" hasOnlySubstanceUnits="false" id="M_but_e" metaid="M_but_e"
-      name="Butyrate (n-C4:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_but_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/but" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM162281" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-6" fbc:chemicalFormula="C100H176N2O38P2" hasOnlySubstanceUnits="false" id="M_kdo2lipid4p_c"
-      metaid="M_kdo2lipid4p_c" name="KDO(2)-lipid IV(A) with palmitoleoyl">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_kdo2lipid4p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/kdo2lipid4p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2265" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM58983" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15491" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="2" fbc:chemicalFormula="Co" hasOnlySubstanceUnits="false" id="M_cobalt2_e" metaid="M_cobalt2_e" name="Co2+">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cobalt2_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cobalt2" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23337" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48827" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48828" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00608" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00175" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM90960" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00149" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C62H88CoN13O14P" hasOnlySubstanceUnits="false" id="M_cbl1_c" metaid="M_cbl1_c"
-      name="Cob(I)alamin">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cbl1_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cbl1" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:COB-I-ALAMIN" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14004" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15982" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23328" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:3784" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:60488" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03429" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06470" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00853" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM91519" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C9H12N2O6" hasOnlySubstanceUnits="false" id="M_uri_p" metaid="M_uri_p" name="Uridine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_uri_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/uri" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:URIDINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15296" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16704" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27227" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46386" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46391" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46460" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46463" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9893" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00296" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00299" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM288" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00249" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C18H33O2" hasOnlySubstanceUnits="false" id="M_ocdcea_p" metaid="M_ocdcea_p"
-      name="Octadecenoate (n-C18:1)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ocdcea_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ocdcea" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:OLEATE-CPD" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:104361" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14684" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16196" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25663" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25664" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30823" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44741" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7741" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00712" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D02315" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01030002" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01030763" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01030810" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM306" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00536" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C10H11N4O7P" hasOnlySubstanceUnits="false" id="M_dimp_c" metaid="M_dimp_c"
-      name="DIMP C10H12N4O7P">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dimp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dimp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DIMP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19250" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28806" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41998" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43315" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43377" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43384" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43389" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44500" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61194" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:837" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06555" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06196" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1922" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03704" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C39H64N7O17P3S" hasOnlySubstanceUnits="false" id="M_odecoa_c" metaid="M_odecoa_c"
-      name="Octadecenoyl-CoA (n-C18:1CoA)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_odecoa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/odecoa" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1848" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H10N2O3S" hasOnlySubstanceUnits="false" id="M_cgly_c" metaid="M_cgly_c"
-      name="Cys Gly C5H10N2O3S">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cgly_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cgly" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CYS-GLY" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4047" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61694" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00078" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB28775" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01419" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM683" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01017" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H11NO3S" hasOnlySubstanceUnits="false" id="M_metsox_R__L_e" metaid="M_metsox_R__L_e"
-      name="L-methionine-R-sulfoxide">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_metsox_R__L_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/metsox_R__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-8989" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-8990" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:L-Methionine-sulfoxides" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13142" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17016" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21361" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49031" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49032" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58772" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58773" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6272" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C02989" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C15998" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C15999" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2246" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01914" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd14720" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd14721" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15497" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15498" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd29319" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="C34H30FeN4O4" hasOnlySubstanceUnits="false" id="M_pheme_p" metaid="M_pheme_p"
-      name="Protoheme C34H30FeN4O4">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pheme_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pheme" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PROTOHEME" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14957" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17627" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26355" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5651" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:60344" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00032" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM249" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="C10H11N4O7P" hasOnlySubstanceUnits="false" id="M_dimp_p" metaid="M_dimp_p"
-      name="DIMP C10H12N4O7P">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dimp_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dimp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DIMP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19250" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28806" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41998" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43315" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43377" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43384" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43389" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44500" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61194" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:837" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06555" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06196" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1922" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03704" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C7H13NO2" hasOnlySubstanceUnits="false" id="M_ctbt_p" metaid="M_ctbt_p"
-      name="Crotonobetaine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ctbt_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ctbt" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CROTONO-BETAINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11946" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17237" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1774" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20299" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48867" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C04114" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1607" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02543" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-4" fbc:chemicalFormula="C77H119N15O41" hasOnlySubstanceUnits="false" id="M_murein5p4p_p" metaid="M_murein5p4p_p"
-      name="Two linked disacharide pentapeptide and tetrapeptide murein units (uncrosslinked, middle of chain)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_murein5p4p_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/murein5p4p" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM5971" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15510" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C19H33N2O8PRS" hasOnlySubstanceUnits="false" id="M_toct2eACP_c" metaid="M_toct2eACP_c"
-      name="Trans-Oct-2-enoyl-[acyl-carrier protein]">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_toct2eACP_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/toct2eACP" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:2-Octenoyl-ACPs" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05751" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07060009" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM23766" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd11471" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="C65H116O17P2" hasOnlySubstanceUnits="false" id="M_clpn141_p" metaid="M_clpn141_p"
-      name="Cardiolipin (tetratetradec-7-enoyl, n-C14:1)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_clpn141_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/clpn141" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM7149" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C17H36NO7P1" hasOnlySubstanceUnits="false" id="M_2agpe120_c" metaid="M_2agpe120_c"
-      name="2-Acyl-sn-glycero-3-phosphoethanolamine (n-C12:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2agpe120_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2agpe120" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2178" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM34808" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd26439" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C24H46O9P1" hasOnlySubstanceUnits="false" id="M_1agpg181_p" metaid="M_1agpg181_p"
-      name="1-Acyl-sn-glycero-3-phosphoglycerol (n-C18:1)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_1agpg181_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/1agpg181" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-8365" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:72828" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:72952" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMGP04050006" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM73868" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd25202" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-5" fbc:chemicalFormula="C23H31N7O19P3S" hasOnlySubstanceUnits="false" id="M_oxalcoa_c" metaid="M_oxalcoa_c"
-      name="Oxalyl-CoA">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_oxalcoa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/oxalcoa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:OXALYL-COA" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14707" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15535" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25738" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49814" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57388" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7817" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00313" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07050357" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM618" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00262" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C16H30O5P" hasOnlySubstanceUnits="false" id="M_hdceap_c" metaid="M_hdceap_c"
-      name="Hexadecanoyl-phosphate (n-C16:1)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_hdceap_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/hdceap" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM147482" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-1" fbc:chemicalFormula="CH4O3P" hasOnlySubstanceUnits="false" id="M_mepn_e" metaid="M_mepn_e"
-      name="Methylphosphonic acid">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_mepn_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/mepn" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C3H4O7P" hasOnlySubstanceUnits="false" id="M_3pg_c" metaid="M_3pg_c"
-      name="3-Phospho-D-glycerate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_3pg_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/3pg" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:G3P" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11879" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11880" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12987" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1657" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17794" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21029" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58272" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00197" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM126" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00169" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C9H12N3O14P3" hasOnlySubstanceUnits="false" id="M_ctp_c" metaid="M_ctp_c"
-      name="CTP C9H12N3O14P3">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ctp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ctp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CTP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13286" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17677" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23522" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:3285" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:37563" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41675" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58231" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00063" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM63" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00052" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C10H12N5O9P2" hasOnlySubstanceUnits="false" id="M_dadp_c" metaid="M_dadp_c"
-      name="DADP C10H12N5O9P2">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dadp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dadp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DADP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10489" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14067" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16174" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19235" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41890" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57667" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01508" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00206" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM374" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00177" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H4N4O2" hasOnlySubstanceUnits="false" id="M_xan_c" metaid="M_xan_c" name="Xanthine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_xan_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/xan" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:XANTHINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10059" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15318" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17712" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27317" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46377" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48517" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00292" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00385" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM174" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00309" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C14H22N3O17P3" hasOnlySubstanceUnits="false" id="M_2p4c2me_c" metaid="M_2p4c2me_c"
-      name="2-phospho-4-(cytidine 5'-diphospho)-2-C-methyl-D-erythritol">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2p4c2me_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2p4c2me" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:2-PHOSPHO-4-CYTIDINE-5-DIPHOSPHO-2-C-MET" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11649" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11650" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1266" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16840" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57919" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C11436" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1641" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd08288" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C13H20N3O8S" hasOnlySubstanceUnits="false" id="M_lgt__S_c" metaid="M_lgt__S_c"
-      name="(R)-S-Lactoylglutathione">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_lgt__S_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/lgt__S" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:S-LACTOYL-GLUTATHIONE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11014" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15694" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18678" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:355" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57474" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01066" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62624" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C03451" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1253" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02182" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C6H13NO8P" hasOnlySubstanceUnits="false" id="M_gam1p_c" metaid="M_gam1p_c"
-      name="D-Glucosamine 1-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_gam1p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/gam1p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLUCOSAMINE-1P" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12316" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20994" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27625" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4163" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42868" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58516" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06156" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM969" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03671" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="2" fbc:chemicalFormula="Zn" hasOnlySubstanceUnits="false" id="M_zn2_e" metaid="M_zn2_e" name="Zinc">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_zn2_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/zn2" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10113" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27368" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29105" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49972" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49982" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01303" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00038" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C12570" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D01170" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM149" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00034" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C4H4N2O2" hasOnlySubstanceUnits="false" id="M_ura_e" metaid="M_ura_e" name="Uracil">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ura_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ura" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:URACIL" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15288" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17568" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27210" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43254" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46375" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9882" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00300" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00106" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00027" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D09776" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM158" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00092" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="1" fbc:chemicalFormula="C6H15N2O2" hasOnlySubstanceUnits="false" id="M_lys__L_e" metaid="M_lys__L_e"
-      name="L-Lysine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_lys__L_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/lys__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:LYS" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13135" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:133538" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18019" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21351" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25094" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32550" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32551" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32552" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32563" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32564" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32565" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43950" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6264" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62809" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00047" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C16440" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D02304" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM78" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00039" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd19182" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="CNO" hasOnlySubstanceUnits="false" id="M_cynt_c" metaid="M_cynt_c" name="Cyanate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cynt_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cynt" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-69" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14037" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23419" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23422" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28024" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29195" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29202" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:3968" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02078" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01417" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C19067" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1191" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01015" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C6H7O9P" hasOnlySubstanceUnits="false" id="M_ascb6p_c" metaid="M_ascb6p_c"
-      name="L-ascorbate-6-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ascb6p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ascb6p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:L-ASCORBATE-6-PHOSPHATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61698" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61701" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:80368" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C16186" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2689" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd14905" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C11H17NO11P" hasOnlySubstanceUnits="false" id="M_acmum6p_c" metaid="M_acmum6p_c"
-      name="N-acetylmuramate 6-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_acmum6p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/acmum6p" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:47968" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58722" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C16698" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM90332" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15391" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C6H12O6" hasOnlySubstanceUnits="false" id="M_all__D_c" metaid="M_all__D_c"
-      name="D-Allose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_all__D_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/all__D" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ALLOSE" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-Allopyranose" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4093" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01487" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1919" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01055" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C11H18NO9" hasOnlySubstanceUnits="false" id="M_acnam_p" metaid="M_acnam_p"
-      name="N-Acetylneuraminate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_acnam_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/acnam" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:N-ACETYLNEURAMINATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12471" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12579" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17012" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21617" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21620" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29087" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:33987" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35418" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7214" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00230" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00800" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00270" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM227" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00232" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd27569" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="C6H11O9P" hasOnlySubstanceUnits="false" id="M_g6p_p" metaid="M_g6p_p"
-      name="D-Glucose 6-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_g6p_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/g6p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-glucopyranose-6-phosphate" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14314" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4170" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61548" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01401" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01549" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06793" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00092" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM160" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00079" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd26836" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C9H16NO5" hasOnlySubstanceUnits="false" id="M_pnto__R_p" metaid="M_pnto__R_p"
-      name="(R)-Pantothenate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pnto__R_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pnto__R" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PANTOTHENATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11008" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14739" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16454" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18700" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18701" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25846" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29032" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44679" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46905" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7916" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00210" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62717" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00864" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D07413" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM364" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00644" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="C10H12N5O7P" hasOnlySubstanceUnits="false" id="M_amp_p" metaid="M_amp_p"
-      name="AMP C10H12N5O7P">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_amp_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/amp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:AMP" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:AMP-GROUP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12056" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13234" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13235" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13736" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13740" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16027" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22242" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22245" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2356" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40510" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40721" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40726" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40786" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40826" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:456215" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:47222" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00020" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D02769" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM14" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00018" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd22272" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C6H12O6" hasOnlySubstanceUnits="false" id="M_gal_bD_p" metaid="M_gal_bD_p"
-      name="Beta D-Galactose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_gal_bD_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/gal_bD" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GALACTOSE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10383" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22774" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27667" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42776" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42889" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03449" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00962" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM112" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00709" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="CH2O" hasOnlySubstanceUnits="false" id="M_fald_p" metaid="M_fald_p" name="Formaldehyde">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_fald_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/fald" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CARBONYL-GROUP" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:FORMALDEHYDE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14274" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16842" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24077" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:337763" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5142" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01426" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00067" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00017" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM56" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00055" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-1" fbc:chemicalFormula="C18H30N5O9" hasOnlySubstanceUnits="false" id="M_LalaDgluMdapDala_e"
-      metaid="M_LalaDgluMdapDala_e" name="L-alanine-D-glutamate-meso-2,6-diaminoheptanedioate-D-alanine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_LalaDgluMdapDala_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/LalaDgluMdapDala" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM59271" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15387" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-6" fbc:chemicalFormula="C117H208N2O45P2" hasOnlySubstanceUnits="false" id="M_hlipa_c" metaid="M_hlipa_c"
-      name="Heptosyl-kdo2-lipidA">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_hlipa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/hlipa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-929" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61502" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61528" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2680" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15485" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-8" fbc:chemicalFormula="C124H219N2O54P3" hasOnlySubstanceUnits="false" id="M_phhlipa_c" metaid="M_phhlipa_c"
-      name="Phospho-heptosyl-heptosyl-kdo2-lipidA">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_phhlipa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/phhlipa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2240" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM75132" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15549" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="X" hasOnlySubstanceUnits="false" id="M_alpp_p" metaid="M_alpp_p" name="Applipoprotein">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_alpp_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/alpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM92124" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15395" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C6H12O4S" hasOnlySubstanceUnits="false" id="M_5mtr_p" metaid="M_5mtr_p"
-      name="5-Methylthio-D-ribose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_5mtr_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/5mtr" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-560" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12148" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16895" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2101" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22007" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57941" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:78440" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C03089" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1592" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01981" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C6H11O8S" hasOnlySubstanceUnits="false" id="M_sf_c" metaid="M_sf_c"
-      name="6-deoxy-6-sulphofructose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_sf_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/sf" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C23H34N7O17P3S" hasOnlySubstanceUnits="false" id="M_accoa_c" metaid="M_accoa_c"
-      name="Acetyl-CoA">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_accoa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/accoa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ACETYL-COA" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13712" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15351" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22192" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2408" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40470" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57288" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01206" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00024" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07050029" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07050281" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM21" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00022" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="1" fbc:chemicalFormula="C6H15N4O2" hasOnlySubstanceUnits="false" id="M_arg__L_c" metaid="M_arg__L_c"
-      name="L-Arginine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_arg__L_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/arg__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ARG" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13077" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:133495" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16467" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21235" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22616" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2643" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29016" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32681" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32682" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32683" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32695" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32696" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32697" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42927" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6185" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00517" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62762" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00062" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C02385" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D02982" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM70" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00051" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd19021" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C7H14N2O4" hasOnlySubstanceUnits="false" id="M_26dap_LL_c" metaid="M_26dap_LL_c"
-      name="LL-2,6-Diaminoheptanedioate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_26dap_LL_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/26dap_LL" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:LL-DIAMINOPIMELATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13192" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16026" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21428" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21429" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:47031" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57609" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6341" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01370" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00666" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01170102" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM644" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00504" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C12H22O11" hasOnlySubstanceUnits="false" id="M_cellb_e" metaid="M_cellb_e"
-      name="Cellobiose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cellb_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cellb" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CELLOBIOSE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10358" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22836" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35462" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:36217" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41353" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00055" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00185" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06421" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06422" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.glycan/G00289" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1142" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03845" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C20H28N3O19P2" hasOnlySubstanceUnits="false" id="M_uamr_c" metaid="M_uamr_c"
-      name="UDP-N-acetylmuramate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_uamr_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/uamr" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:UDP-N-ACETYLMURAMATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13458" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13477" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17882" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22120" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58309" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:70757" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:70765" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9827" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01050" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM785" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00773" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C6H14O6" hasOnlySubstanceUnits="false" id="M_sbt__D_e" metaid="M_sbt__D_e"
-      name="D-Sorbitol">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_sbt__D_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/sbt__D" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:SORBITOL" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12954" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13020" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15093" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17220" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17924" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21091" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26724" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26726" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30911" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:33795" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:33796" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4246" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45559" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:87978" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9201" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00247" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00794" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00096" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM469" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00588" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="1" fbc:chemicalFormula="C6H15N4O2" hasOnlySubstanceUnits="false" id="M_arg__L_e" metaid="M_arg__L_e"
-      name="L-Arginine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_arg__L_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/arg__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ARG" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13077" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:133495" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16467" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21235" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22616" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2643" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29016" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32681" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32682" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32683" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32695" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32696" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32697" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42927" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6185" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00517" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62762" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00062" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C02385" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D02982" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM70" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00051" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd19021" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C10H13N5O4" hasOnlySubstanceUnits="false" id="M_dgsn_e" metaid="M_dgsn_e"
-      name="Deoxyguanosine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dgsn_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dgsn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DEOXYGUANOSINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14116" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17172" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19244" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23624" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42667" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42867" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42874" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42987" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4412" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00085" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00330" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM647" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00277" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="3" fbc:chemicalFormula="C7H22N3" hasOnlySubstanceUnits="false" id="M_spmd_e" metaid="M_spmd_e" name="Spermidine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_spmd_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/spmd" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:SPERMIDINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15095" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15097" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16610" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26732" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26733" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45647" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57834" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9218" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01257" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00315" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM124" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00264" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C9H11NO6" hasOnlySubstanceUnits="false" id="M_sucgsa_c" metaid="M_sucgsa_c"
-      name="N2-Succinyl-L-glutamate 5-semialdehyde">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_sucgsa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/sucgsa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-822" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21820" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27657" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58520" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7374" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05932" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1763" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03526" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C4H4O6" hasOnlySubstanceUnits="false" id="M_tartr__L_c" metaid="M_tartr__L_c"
-      name="L-tartrate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_tartr__L_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/tartr__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TARTRATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10961" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11018" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15193" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15671" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18710" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18711" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26849" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30924" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35397" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35398" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:358" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45866" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00956" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00898" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00103" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM816" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00666" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C18H33O2" hasOnlySubstanceUnits="false" id="M_ocdcea_c" metaid="M_ocdcea_c"
-      name="Octadecenoate (n-C18:1)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ocdcea_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ocdcea" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:OLEATE-CPD" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:104361" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14684" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16196" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25663" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25664" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30823" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44741" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7741" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00712" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D02315" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01030002" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01030763" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01030810" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM306" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00536" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="1" fbc:chemicalFormula="H" hasOnlySubstanceUnits="false" id="M_h_p" metaid="M_h_p" name="H+">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_h_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/h" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PROTON" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10744" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13357" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15378" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24636" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29233" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29234" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5584" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB59597" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00080" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00067" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="C4H4O4" hasOnlySubstanceUnits="false" id="M_succ_p" metaid="M_succ_p" name="Succinate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_succ_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/succ" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:SUC" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:132287" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15125" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15741" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22941" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22943" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26803" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26807" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30031" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30779" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45639" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:90372" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9304" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00254" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00042" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01170043" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM25" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00036" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C6H12O6" hasOnlySubstanceUnits="false" id="M_gal_p" metaid="M_gal_p" name="D-Galactose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_gal_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/gal" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ALPHA-D-GALACTOSE" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-galactopyranose" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10231" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12936" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22373" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28061" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4139" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42741" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00143" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB05762" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00124" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00984" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D04291" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM390" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00108" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00724" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C24H42O21" hasOnlySubstanceUnits="false" id="M_maltttr_p" metaid="M_maltttr_p"
-      name="Maltotetraose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_maltttr_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/maltttr" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-13205" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2595" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:MALTOTETRAOSE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25145" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28460" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44299" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61988" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:62974" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6671" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01296" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C02013" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C02052" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.glycan/G00459" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM5663" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01376" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01399" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H10NO2S" hasOnlySubstanceUnits="false" id="M_met__D_c" metaid="M_met__D_c"
-      name="D-Methionine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_met__D_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/met__D" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-218" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13005" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16867" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21065" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32637" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32638" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4215" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44071" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57932" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00855" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1275" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00637" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="C10H13N2O8P" hasOnlySubstanceUnits="false" id="M_dtmp_p" metaid="M_dtmp_p"
-      name="DTMP C10H13N2O8P">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dtmp_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dtmp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TMP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10529" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14092" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15246" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17013" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26999" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45759" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45762" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45772" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45926" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46013" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46036" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46960" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:47711" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:63528" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:63549" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00364" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM257" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00298" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="AsO4" hasOnlySubstanceUnits="false" id="M_aso4_c" metaid="M_aso4_c" name="Arsenate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_aso4_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/aso4" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ARSENATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13856" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18231" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22629" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22631" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2843" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2844" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29125" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48597" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48600" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:81880" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB12190" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01478" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C11215" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C18647" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C18648" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM970" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01048" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C8H15NO6" hasOnlySubstanceUnits="false" id="M_acgal_p" metaid="M_acgal_p"
-      name="N-Acetyl-D-galactosamine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_acgal_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/acgal" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:N-acetyl-D-galactosamine" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21502" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21600" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28037" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28800" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:546804" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7110" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7201" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01132" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM395" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00832" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd27607" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C3H7NO2S" hasOnlySubstanceUnits="false" id="M_cys__D_e" metaid="M_cys__D_e"
-      name="D-Cysteine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cys__D_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cys__D" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-CYSTEINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12919" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16375" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20921" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32449" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32450" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32451" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35236" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4111" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41887" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03417" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00793" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2112" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00587" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-3" fbc:chemicalFormula="C38H73O13P2" hasOnlySubstanceUnits="false" id="M_pgp160_p" metaid="M_pgp160_p"
-      name="Phosphatidylglycerophosphate (dihexadecanoyl, n-C16:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pgp160_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pgp160" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-12821" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM32180" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15545" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd23599" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="CH2NO2" hasOnlySubstanceUnits="false" id="M_cbm_c" metaid="M_cbm_c" name="Carbamate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cbm_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cbm" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CARBAMATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13941" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22504" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23002" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28616" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:3386" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44573" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03551" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01563" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM742" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01101" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C19H33N2O10PRS" hasOnlySubstanceUnits="false" id="M_pmeACP_c" metaid="M_pmeACP_c"
-      name="Pimeloyl-[acyl-carrier protein] methyl ester">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pmeACP_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pmeACP" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:Pimeloyl-ACP-methyl-esters" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C19846" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM12694" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd21088" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C21H26N7O14P2" hasOnlySubstanceUnits="false" id="M_nad_c" metaid="M_nad_c"
-      name="Nicotinamide adenine dinucleotide">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_nad_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/nad" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:NAD" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13393" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13394" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15846" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21901" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29867" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44214" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44215" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44281" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57540" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7422" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00003" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00002" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM8" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00003" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C5H9O8P" hasOnlySubstanceUnits="false" id="M_r1p_c" metaid="M_r1p_c"
-      name="Alpha-D-Ribose 1-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_r1p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/r1p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RIBOSE-1P" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10269" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12329" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12330" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16300" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22412" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45429" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45482" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57720" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01489" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00620" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM295" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00475" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C11H15N5O3S" hasOnlySubstanceUnits="false" id="M_5mta_c" metaid="M_5mta_c"
-      name="5-Methylthioadenosine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_5mta_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/5mta" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:5-METHYLTHIOADENOSINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12055" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12064" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12771" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14605" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17509" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18175" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1966" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1986" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20491" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20494" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44181" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01173" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00170" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM150" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00147" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H11NO2" hasOnlySubstanceUnits="false" id="M_val__L_e" metaid="M_val__L_e"
-      name="L-Valine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_val__L_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/val__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:VAL" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13186" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16414" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21417" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27266" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32851" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32852" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32859" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32860" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46282" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46376" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46418" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46484" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57762" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6321" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:87977" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00883" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB34366" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00183" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C16436" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00039" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01100046" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM199" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00156" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15141" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C16H21N5O15P2" hasOnlySubstanceUnits="false" id="M_gdpofuc_c" metaid="M_gdpofuc_c"
-      name="GDP-4-oxo-L-fucose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_gdpofuc_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/gdpofuc" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2128" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21155" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28530" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5216" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM54801" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15472" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="1" fbc:chemicalFormula="C5H14NO" hasOnlySubstanceUnits="false" id="M_chol_c" metaid="M_chol_c"
-      name="Choline C5H14NO">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_chol_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/chol" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CHOLINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13985" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15354" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23212" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:3665" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41524" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:72322" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00097" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00114" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D07690" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D10498" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM90" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00098" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C12H22O11" hasOnlySubstanceUnits="false" id="M_malt_c" metaid="M_malt_c"
-      name="Maltose C12H22O11">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_malt_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/malt" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ALPHA-MALTOSE" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:MALTOSE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10300" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12340" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14568" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17306" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18167" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22463" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25144" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43893" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6668" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00208" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00897" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00044" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.glycan/G00275" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM165" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00179" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00665" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C9H17NO6S" hasOnlySubstanceUnits="false" id="M_rhcys_c" metaid="M_rhcys_c"
-      name="S-Ribosyl-L-homocysteine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_rhcys_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/rhcys" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-564" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12750" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17575" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22071" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45383" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58195" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8968" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:90364" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C03539" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1777" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02227" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H10NO2S" hasOnlySubstanceUnits="false" id="M_met__D_e" metaid="M_met__D_e"
-      name="D-Methionine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_met__D_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/met__D" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-218" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13005" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16867" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21065" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32637" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32638" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4215" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44071" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57932" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00855" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1275" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00637" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C7H15NO2" hasOnlySubstanceUnits="false" id="M_gbbtn_c" metaid="M_gbbtn_c"
-      name="Gamma-butyrobetaine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_gbbtn_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/gbbtn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GAMMA-BUTYROBETAINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12047" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16244" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1941" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20484" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01161" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06831" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01181" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM626" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00870" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C2H6OS" hasOnlySubstanceUnits="false" id="M_dmso_e" metaid="M_dmso_e"
-      name="Dimethyl sulfoxide">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dmso_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dmso" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DMSO" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23801" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28262" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42138" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4612" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02151" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C11143" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D01043" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM745" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd08021" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C5H8O11P2" hasOnlySubstanceUnits="false" id="M_r15bp_c" metaid="M_r15bp_c"
-      name="D-Ribose 1,5-bisphosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_r15bp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/r15bp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RIBOSE-15-BISPHOSPHATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13012" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17994" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21079" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4234" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58345" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:68688" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:68819" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB11688" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01151" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM881" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00847" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H14NO6P" hasOnlySubstanceUnits="false" id="M_g3pe_p" metaid="M_g3pe_p"
-      name="Sn-Glycero-3-phosphoethanolamine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_g3pe_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/g3pe" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:L-1-GLYCEROPHOSPHORYLETHANOL-AMINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10647" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12842" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16929" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26699" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57952" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB59660" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01233" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM368" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00908" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H10O5" hasOnlySubstanceUnits="false" id="M_arab__D_c" metaid="M_arab__D_c"
-      name="D Arabinose C5H10O5">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_arab__D_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/arab__D" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-arabinopyranose" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46994" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00216" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM544" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00185" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C2H2O5S" hasOnlySubstanceUnits="false" id="M_sulfac_c" metaid="M_sulfac_c"
-      name="Sulfoacetate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_sulfac_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/sulfac" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-10246" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:34987" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49876" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:50519" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58824" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C14179" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1949" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd09878" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="2" fbc:chemicalFormula="Mg" hasOnlySubstanceUnits="false" id="M_mg2_c" metaid="M_mg2_c" name="Magnesium">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_mg2_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/mg2" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13379" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18420" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25112" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:39127" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49736" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6635" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00547" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00305" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C07755" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C07876" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C12567" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00731" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D01167" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM653" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00254" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C14H24O12" hasOnlySubstanceUnits="false" id="M_acmalt_c" metaid="M_acmalt_c"
-      name="Acetyl-maltose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_acmalt_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/acmalt" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-18529" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C02130" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.glycan/G10592" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM3135" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01441" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C19H37O7P1" hasOnlySubstanceUnits="false" id="M_1hdecg3p_c" metaid="M_1hdecg3p_c"
-      name="1-hexadecanoyl-sn-glycerol 3-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_1hdecg3p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/1hdecg3p" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM90586" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15327" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C34H62O10P1" hasOnlySubstanceUnits="false" id="M_pg141_p" metaid="M_pg141_p"
-      name="Phosphatidylglycerol (ditetradec-7-enoyl, n-C14:1)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pg141_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pg141" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2029" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C60H110O11P" hasOnlySubstanceUnits="false" id="M_apg181_c" metaid="M_apg181_c"
-      name="Acyl phosphatidylglycerol (n-C18:1)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_apg181_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/apg181" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM7023" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C8H9NO3" hasOnlySubstanceUnits="false" id="M_pydx_p" metaid="M_pydx_p" name="Pyridoxal">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pydx_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pydx" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PYRIDOXAL" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:131530" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14976" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17310" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26423" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45112" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8667" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01545" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00250" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM311" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00215" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C12H22O11" hasOnlySubstanceUnits="false" id="M_cellb_p" metaid="M_cellb_p"
-      name="Cellobiose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cellb_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cellb" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CELLOBIOSE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10358" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22836" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35462" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:36217" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41353" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00055" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00185" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06421" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06422" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.glycan/G00289" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1142" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03845" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C10H12N5O10P2" hasOnlySubstanceUnits="false" id="M_adp_c" metaid="M_adp_c"
-      name="ADP C10H12N5O10P2">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_adp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/adp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ADP" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-1651" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13222" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16761" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22244" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2342" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40553" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:456216" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:87518" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01341" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00008" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.glycan/G11113" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM7" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00008" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C4H4O5" hasOnlySubstanceUnits="false" id="M_mal__L_c" metaid="M_mal__L_c"
-      name="L-Malate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_mal__L_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/mal__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:MAL" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11066" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13140" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15589" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18784" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18785" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30797" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:423" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00156" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00149" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM98" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00130" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="CH4N2O" hasOnlySubstanceUnits="false" id="M_urea_c" metaid="M_urea_c" name="Urea CH4N2O">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_urea_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/urea" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:UREA" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:134711" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15292" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16199" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27218" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32285" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46379" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48376" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9888" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00294" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00086" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00023" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D01749" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D10496" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM117" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00073" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C9H13N4O9P" hasOnlySubstanceUnits="false" id="M_5apru_c" metaid="M_5apru_c"
-      name="5-Amino-6-(5'-phosphoribosylamino)uracil">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_5apru_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/5apru" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-602" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12108" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18337" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2032" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20546" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58453" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:59550" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:59551" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01268" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1532" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00931" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C9H16NO5" hasOnlySubstanceUnits="false" id="M_pnto__R_c" metaid="M_pnto__R_c"
-      name="(R)-Pantothenate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pnto__R_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pnto__R" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PANTOTHENATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11008" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14739" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16454" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18700" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18701" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25846" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29032" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44679" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46905" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7916" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00210" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62717" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00864" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D07413" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM364" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00644" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-7" fbc:chemicalFormula="C10H11N5O20P5" hasOnlySubstanceUnits="false" id="M_gdptp_c" metaid="M_gdptp_c"
-      name="Guanosine 3'-diphosphate 5'-triphosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_gdptp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/gdptp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GDP-TP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14378" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14382" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16690" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24446" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5566" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:60028" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:71477" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB60480" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C04494" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1561" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02740" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C33H54N7O18P3S" hasOnlySubstanceUnits="false" id="M_3hddcoa_c" metaid="M_3hddcoa_c"
-      name="(S)-3-Hydroxydodecanoyl-CoA">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_3hddcoa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/3hddcoa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2107" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18751" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27668" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:396" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:62558" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03936" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62260" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05262" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07050158" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM733" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03116" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C10H14N2O5" hasOnlySubstanceUnits="false" id="M_thymd_e" metaid="M_thymd_e"
-      name="Thymidine C10H14N2O5">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_thymd_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/thymd" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:THYMIDINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15244" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17748" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19273" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45782" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45834" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45917" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45918" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:53527" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9579" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00273" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00214" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM420" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00184" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C9H11N3O9P" hasOnlySubstanceUnits="false" id="M_5aizc_c" metaid="M_5aizc_c"
-      name="5-amino-1-(5-phospho-D-ribosyl)imidazole-4-carboxylate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_5aizc_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/5aizc" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PHOSPHORIBOSYL-CARBOXY-AMINOIMIDAZOLE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12103" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18968" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28413" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41336" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43272" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:575" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58564" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:77657" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06273" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C04751" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM507" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02893" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C5H9O8P" hasOnlySubstanceUnits="false" id="M_xu5p__L_c" metaid="M_xu5p__L_c"
-      name="L-Xylulose 5-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_xu5p__L_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/xu5p__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:L-XYLULOSE-5-P" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13191" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16593" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21427" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57829" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6328" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C03291" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1238" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02100" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C9H6O6" hasOnlySubstanceUnits="false" id="M_hkntd_c" metaid="M_hkntd_c"
-      name="2-hydroxy-6-ketononatrienedioate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_hkntd_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/hkntd" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61450" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61467" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C12624" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2040" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd09255" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C12H22O11" hasOnlySubstanceUnits="false" id="M_sucr_p" metaid="M_sucr_p"
-      name="Sucrose C12H22O11">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_sucr_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/sucr" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:SUCROSE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15128" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17992" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26812" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45795" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9314" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00258" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00089" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00025" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.glycan/G00370" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM167" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00076" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-2" fbc:chemicalFormula="C10H12N5O8P" hasOnlySubstanceUnits="false" id="M_gmp_e" metaid="M_gmp_e"
-      name="GMP C10H12N5O8P">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_gmp_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/gmp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GMP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13341" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14381" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17345" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24449" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24450" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29058" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40119" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42615" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42647" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42831" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42887" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42892" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42979" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:47450" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5228" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58115" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00144" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM113" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00126" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C2H5O4S" hasOnlySubstanceUnits="false" id="M_isetac_p" metaid="M_isetac_p"
-      name="Isethionic acid">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_isetac_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/isetac" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-3745" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1157" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61904" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03903" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05123" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1630" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03048" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C9H12N5O13P3" hasOnlySubstanceUnits="false" id="M_dhmptp_c" metaid="M_dhmptp_c"
-      name="Dihydromonapterin-triphosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dhmptp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dhmptp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DIHYDROMONAPTERIN-TRIPHOSPHATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61186" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61191" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C21094" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM5576" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15443" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C6H12N2O3" hasOnlySubstanceUnits="false" id="M_alaala_p" metaid="M_alaala_p"
-      name="D-Alanyl-D-alanine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_alaala_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/alaala" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-ALA-D-ALA" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12900" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13749" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16576" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20894" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4088" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57822" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03459" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB28680" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00993" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM669" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00731" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C17H29N2O8PRS" hasOnlySubstanceUnits="false" id="M_thex2eACP_c" metaid="M_thex2eACP_c"
-      name="Trans-Hex-2-enoyl-[acyl-carrier protein]">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_thex2eACP_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/thex2eACP" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:Hex-2-enoyl-ACPs" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10727" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05748" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07060007" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM24502" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd11473" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C27H47N2O8PRS" hasOnlySubstanceUnits="false" id="M_t3c9palmeACP_c"
-      metaid="M_t3c9palmeACP_c" name="Trans-3-cis-9-palmitoleoyl-[acyl-carrier protein]">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_t3c9palmeACP_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/t3c9palmeACP" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM5961" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15571" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C39H74N1O8P1" hasOnlySubstanceUnits="false" id="M_cpe160_c" metaid="M_cpe160_c"
-      name="Cyclopropane phosphatidylethanolamine (dihexadec-9,10-cyclo-anoyl, n-C16:0 cyclo)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cpe160_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cpe160" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2216" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM48208" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15433" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd26447" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="XC16H30O1" hasOnlySubstanceUnits="false" id="M_lpp_p" metaid="M_lpp_p"
-      name="Lipoprotein">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_lpp_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/lpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6495" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01834" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM7493" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd11959" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C23H46NO7P1" hasOnlySubstanceUnits="false" id="M_1agpe181_p" metaid="M_1agpe181_p"
-      name="1-Acyl-sn-glycero-3-phosphoethanolamine (n-C18:1)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_1agpe181_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/1agpe181" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM9584" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C4H7O3" hasOnlySubstanceUnits="false" id="M_ghb_c" metaid="M_ghb_c"
-      name="Gamma-hydroxybutyrate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ghb_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ghb" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:4-HYDROXY-BUTYRATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12006" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16724" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1860" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20401" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20402" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30830" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:386065" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00710" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB15507" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00989" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01991" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01050006" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM514" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00728" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd11988" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C8H13N2O5" hasOnlySubstanceUnits="false" id="M_LalaLglu_p" metaid="M_LalaLglu_p"
-      name="L-alanine-L-glutamate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_LalaLglu_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/LalaLglu" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-1445" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61396" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61565" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C20958" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM4026" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15388" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H8O4" hasOnlySubstanceUnits="false" id="M_mdhdhf_c" metaid="M_mdhdhf_c"
-      name="(2R,4S)-2-methyl-2,4-dihydroxydihydrofuran-3-one">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_mdhdhf_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/mdhdhf" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-10773" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:71316" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM9407" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd22811" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C11H12N5O8P1X" hasOnlySubstanceUnits="false" id="M_moadamp_c" metaid="M_moadamp_c"
-      name="MoaD Protein with bound AMP">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_moadamp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/moadamp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM148352" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H10O5" hasOnlySubstanceUnits="false" id="M_mththf_p" metaid="M_mththf_p"
-      name="(2R,4S)-2-methyl-2,3,3,4-tetrahydroxytetrahydrofuran">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_mththf_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/mththf" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-10774" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44800" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C21382" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM30887" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C7H6O3" hasOnlySubstanceUnits="false" id="M_3hbz_c" metaid="M_3hbz_c"
-      name="3-Hydroxybenzoate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_3hbz_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/3hbz" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C6H11O10P2" hasOnlySubstanceUnits="false" id="M_prpmn_c" metaid="M_prpmn_c"
-      name="?-D-ribose-1-methylphosphonate 5-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_prpmn_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/prpmn" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C4H6NO4" hasOnlySubstanceUnits="false" id="M_asp__L_c" metaid="M_asp__L_c"
-      name="L-Aspartate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_asp__L_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/asp__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:L-ASPARTATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13085" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:132943" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17053" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21244" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21247" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22659" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22660" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29991" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29992" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29993" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29995" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35391" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40853" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40900" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40913" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40942" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6193" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00191" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62186" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62501" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00049" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C16433" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00013" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM42" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00041" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd19181" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C7H10NO4" hasOnlySubstanceUnits="false" id="M_acg5sa_c" metaid="M_acg5sa_c"
-      name="N-Acetyl-L-glutamate 5-semialdehyde">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_acg5sa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/acg5sa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-469" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11493" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12461" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12577" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16319" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21551" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29123" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7152" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06488" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01250" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1062" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00918" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C7H9O5" hasOnlySubstanceUnits="false" id="M_skm_c" metaid="M_skm_c" name="Shikimate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_skm_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/skm" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:SHIKIMATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15083" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16119" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26662" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26663" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26664" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:36208" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45740" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9133" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03070" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00493" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM602" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00383" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C10H11N4O8P" hasOnlySubstanceUnits="false" id="M_imp_c" metaid="M_imp_c"
-      name="IMP C10H11N4O8P">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_imp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/imp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:IMP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12057" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12063" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13372" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13373" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14457" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17202" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19271" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43418" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43475" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43524" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43528" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43563" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43611" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:47501" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58053" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5849" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00130" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM125" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00114" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="O2" hasOnlySubstanceUnits="false" id="M_o2_c" metaid="M_o2_c" name="O2 O2">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_o2_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/o2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:OXYGEN-MOLECULE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10745" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13416" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15379" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23833" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25366" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26689" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27140" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29097" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29793" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30491" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44742" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7860" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01377" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00007" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00003" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM4" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00007" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C25H38N7O18P3S" hasOnlySubstanceUnits="false" id="M_3hbcoa_c" metaid="M_3hbcoa_c"
-      name="(S)-3-Hydroxybutanoyl-CoA">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_3hbcoa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/3hbcoa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-12173" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:S-3-HYDROXYBUTANOYL-COA" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11048" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15453" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18749" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18753" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28259" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:394" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:399" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:39978" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57316" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:62611" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01052" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62259" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01144" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06000" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07050153" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07050157" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM446" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00842" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03572" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C7H12O13P2" hasOnlySubstanceUnits="false" id="M_s17bp_c" metaid="M_s17bp_c"
-      name="Sedoheptulose 1,7-bisphosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_s17bp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/s17bp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-SEDOHEPTULOSE-1-7-P2" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15072" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17969" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26620" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58335" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9081" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB60274" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00447" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1294" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00349" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C8H11NO3" hasOnlySubstanceUnits="false" id="M_pydxn_c" metaid="M_pydxn_c"
-      name="Pyridoxine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pydxn_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pydxn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PYRIDOXINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14981" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16709" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26429" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8671" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00239" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02075" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00314" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D08454" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM419" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00263" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C9H15N2O5" hasOnlySubstanceUnits="false" id="M_sucorn_c" metaid="M_sucorn_c"
-      name="N2-Succinyl-L-ornithine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_sucorn_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/sucorn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:N2-SUCCINYLORNITHINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21822" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27574" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45896" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58514" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7375" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01199" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C03415" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1152" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02160" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C9H7O4" hasOnlySubstanceUnits="false" id="M_dhcinnm_c" metaid="M_dhcinnm_c"
-      name="2,3-dihydroxicinnamic acid">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dhcinnm_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dhcinnm" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-10796" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32356" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48681" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58642" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C12623" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1130" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd09254" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd29675" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C6H11O7" hasOnlySubstanceUnits="false" id="M_idon__L_c" metaid="M_idon__L_c"
-      name="L-Idonate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_idon__L_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/idon__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:L-IDONATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13126" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17796" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21335" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21336" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57659" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58494" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6250" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00770" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1565" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00573" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C8H7O2" hasOnlySubstanceUnits="false" id="M_pac_c" metaid="M_pac_c"
-      name="Phenylacetic acid">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pac_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pac" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PHENYLACETATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:Phenyl-Acetates" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14779" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18401" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25975" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25977" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30745" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44686" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8082" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8085" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00209" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01326" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB40733" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00548" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C07086" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C15583" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM497" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00430" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd19069" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-1" fbc:chemicalFormula="C9H9O3" hasOnlySubstanceUnits="false" id="M_3hpppn_e" metaid="M_3hpppn_e"
-      name="3-(3-hydroxy-phenyl)propionate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_3hpppn_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/3hpppn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:3-HYDROXYPHENYL-PROPIONATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1427" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57277" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00375" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C11457" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1634" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd08304" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C7H13NO2" hasOnlySubstanceUnits="false" id="M_ctbt_c" metaid="M_ctbt_c"
-      name="Crotonobetaine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ctbt_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ctbt" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CROTONO-BETAINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11946" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17237" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1774" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20299" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48867" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C04114" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1607" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02543" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C25H45N2O8PRS" hasOnlySubstanceUnits="false" id="M_tdeACP_c" metaid="M_tdeACP_c"
-      name="Cis-tetradec-7-enoyl-[acyl-carrier protein] (n-C14:1)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_tdeACP_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/tdeACP" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM162426" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C17H17N5O10P" hasOnlySubstanceUnits="false" id="M_23dhba_c" metaid="M_23dhba_c"
-      name="(2,3-Dihydroxybenzoyl)adenylate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_23dhba_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/23dhba" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-62" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10846" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15572" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:170" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18521" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57417" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C04030" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1978" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02494" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C33H54N7O17P3S" hasOnlySubstanceUnits="false" id="M_ddcacoa_c" metaid="M_ddcacoa_c"
-      name="Dodecanoyl-CoA (n-C12:0CoA)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ddcacoa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ddcacoa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:LAUROYLCOA-CPD" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14188" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14501" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15521" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25014" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41874" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57375" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6392" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03571" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01832" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07050005" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07050340" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM363" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01260" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C6H9N3O2" hasOnlySubstanceUnits="false" id="M_his__L_p" metaid="M_his__L_p"
-      name="L-Histidine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_his__L_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/his__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:HIS" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13117" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15971" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21324" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24598" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27570" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32510" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32511" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32512" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32513" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32529" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32530" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32531" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32532" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43048" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43114" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43118" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43190" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43239" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5733" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57595" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6240" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00177" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03412" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00135" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00768" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00032" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM134" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00119" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00572" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="NO2" hasOnlySubstanceUnits="false" id="M_no2_p" metaid="M_no2_p" name="Nitrite">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_no2_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/no2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:NITRITE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14658" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16301" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25567" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44396" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7585" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02786" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00088" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM107" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00075" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="2" fbc:chemicalFormula="Cd" hasOnlySubstanceUnits="false" id="M_cd2_e" metaid="M_cd2_e" name="Cadmium">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cd2_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cd2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-1355" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:3290" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48773" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48775" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03638" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C15233" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM4505" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd10924" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C12H14N2O2" hasOnlySubstanceUnits="false" id="M_Nmtrp_c" metaid="M_Nmtrp_c"
-      name="N-Methyltryptophan">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_Nmtrp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/Nmtrp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-392" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:N-METHYLTRYPTOPHAN" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13058" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15334" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21207" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57283" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6166" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:85908" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:86128" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C02983" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C16831" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM3055" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01911" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15389" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd19198" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-11" fbc:chemicalFormula="C145H251N2O74P4" hasOnlySubstanceUnits="false" id="M_icolipa_c" metaid="M_icolipa_c"
-      name="Inner core oligosaccharide lipid A (E coli)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_icolipa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/icolipa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2295" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM57404" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd26459" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C7H15NO3" hasOnlySubstanceUnits="false" id="M_crn__D_p" metaid="M_crn__D_p"
-      name="D-Carnitine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_crn__D_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/crn__D" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-CARNITINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11060" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:51453" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62634" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C15025" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM246" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd10719" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="2" fbc:chemicalFormula="Cd" hasOnlySubstanceUnits="false" id="M_cd2_p" metaid="M_cd2_p" name="Cadmium">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cd2_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cd2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-1355" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:3290" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48773" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48775" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03638" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C15233" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM4505" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd10924" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C6H11O8P" hasOnlySubstanceUnits="false" id="M_2doxg6p_c" metaid="M_2doxg6p_c"
-      name="2 Deoxy D glucose 6 phosphate C6H11O8P">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2doxg6p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2doxg6p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:2-DEOXY-D-GLUCOSE-6-PHOSPHATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:2-DEOXYGLUCOSE-6-PHOSPHATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1079" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11570" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16043" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19554" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57615" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:84756" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:84760" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06369" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM3809" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03805" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd21864" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-6" fbc:chemicalFormula="C111H169N21O59" hasOnlySubstanceUnits="false" id="M_murein4px4p4p_p"
-      metaid="M_murein4px4p4p_p" name="Three disacharide linked murein units (tetrapeptide crosslinked tetrapeptide (A2pm-&gt;D-ala), one uncrosslinked tetrapaptide) (middle of chain)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_murein4px4p4p_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/murein4px4p4p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2266" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM87122" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15507" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C6H7O6" hasOnlySubstanceUnits="false" id="M_dt5hsu_c" metaid="M_dt5hsu_c"
-      name="4-Deoxy-L-threo-5-hexosulose uronate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dt5hsu_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dt5hsu" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="O3Se" hasOnlySubstanceUnits="false" id="M_slnt_p" metaid="M_slnt_p" name="Selenite">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_slnt_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/slnt" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:SELENITE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15077" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18212" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26642" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29924" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9090" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB11119" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05684" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D05814" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D10530" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1157" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03387" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C17H29N2O11PRS" hasOnlySubstanceUnits="false" id="M_hgmeACP_c" metaid="M_hgmeACP_c"
-      name="3-Hydroxyglutaryl-[acyl-carrier protein] methyl ester">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_hgmeACP_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/hgmeACP" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:3-Hydroxyglutaryl-ACP-methyl-ester" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C20373" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM97395" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd22022" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C22H24N2O8" hasOnlySubstanceUnits="false" id="M_ttrcyc_p" metaid="M_ttrcyc_p"
-      name="Tetracycline">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ttrcyc_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ttrcyc" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-1414" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26894" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27902" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45729" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:71392" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:77932" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9474" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB14897" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06570" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00201" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM97613" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03977" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C14H13O9" hasOnlySubstanceUnits="false" id="M_2sephchc_c" metaid="M_2sephchc_c"
-      name="2-succinyl-5-enolpyruvyl-6-hydroxy-3-cyclohexene-1-carboxylate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2sephchc_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2sephchc" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:50271" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58818" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C16519" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1861" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd16335" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C3H7O5S" hasOnlySubstanceUnits="false" id="M_dhps_c" metaid="M_dhps_c"
-      name="2,3-Dihydroxypropane-1-sulfonate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dhps_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dhps" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C2H6OS" hasOnlySubstanceUnits="false" id="M_mercpeth_c" metaid="M_mercpeth_c"
-      name="Mercaptoethanol">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_mercpeth_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/mercpeth" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="1" fbc:chemicalFormula="C8N1O5H14R" hasOnlySubstanceUnits="false" id="M_puacgam_p" metaid="M_puacgam_p"
-      name="Poly-?-1,6-N-acetyl-D-glucosamine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_puacgam_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/puacgam" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C21H28N7O18P3" hasOnlySubstanceUnits="false" id="M_nadphx__S_c" metaid="M_nadphx__S_c"
-      name="(S)-NADPHX">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_nadphx__S_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/nadphx__S" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H11NO2S" hasOnlySubstanceUnits="false" id="M_met__L_c" metaid="M_met__L_c"
-      name="L-Methionine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_met__L_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/met__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:MET" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13141" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14590" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16643" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16811" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21360" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25229" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32631" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32632" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32644" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32646" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43990" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57844" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6271" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:64558" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6829" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00696" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB33951" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00073" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01733" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00019" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D04983" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D04984" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM61" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00060" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd30746" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C6H6N2O" hasOnlySubstanceUnits="false" id="M_ncam_c" metaid="M_ncam_c"
-      name="Nicotinamide">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ncam_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ncam" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:NIACINAMIDE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14645" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17154" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25521" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44258" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7556" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01406" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00153" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00036" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM216" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00133" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C11H8O5" hasOnlySubstanceUnits="false" id="M_sucbz_c" metaid="M_sucbz_c"
-      name="O-Succinylbenzoate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_sucbz_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/sucbz" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:O-SUCCINYLBENZOATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1278" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12835" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18325" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19778" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:37026" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44787" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44788" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C02730" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1212" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01772" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C2H1O3" hasOnlySubstanceUnits="false" id="M_glx_c" metaid="M_glx_c" name="Glyoxylate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_glx_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/glx" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLYOX" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14368" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16891" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24420" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24421" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35977" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:36655" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42767" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5509" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00119" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00048" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM69" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00040" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C2H6O" hasOnlySubstanceUnits="false" id="M_etoh_e" metaid="M_etoh_e" name="Ethanol">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_etoh_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/etoh" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ETOH" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14222" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16236" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23978" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30878" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30880" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42377" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44594" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4879" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:52092" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00108" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00469" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00068" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D02798" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D04855" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D06542" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM303" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00363" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H9NO2" hasOnlySubstanceUnits="false" id="M_pro__L_e" metaid="M_pro__L_e"
-      name="L-Proline">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pro__L_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pro__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PRO" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13154" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17203" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:184637" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21373" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26271" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32862" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32864" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32871" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32872" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42067" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45040" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45100" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45159" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58054" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:60039" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6286" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00162" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00148" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C16435" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00035" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM114" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00129" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15140" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C34H32N4O4" hasOnlySubstanceUnits="false" id="M_ppp9_c" metaid="M_ppp9_c"
-      name="Protoporphyrin">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ppp9_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ppp9" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PROTOPORPHYRIN_IX" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14959" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14960" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14961" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15430" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26358" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:36159" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57306" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8592" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00241" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C02191" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM346" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01476" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C8H12N3O7P" hasOnlySubstanceUnits="false" id="M_air_c" metaid="M_air_c"
-      name="5-amino-1-(5-phospho-D-ribosyl)imidazole">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_air_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/air" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12101" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18969" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2655" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28843" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58592" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62575" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM162266" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C7H8N5O8P2" hasOnlySubstanceUnits="false" id="M_6hmhptpp_c" metaid="M_6hmhptpp_c"
-      name="6-hydroxymethyl-dihydropterin pyrophosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_6hmhptpp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/6hmhptpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DIHYDROPTERIN-CH2OH-PP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1011" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11512" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11517" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15998" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19465" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57602" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:72950" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:73083" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C04807" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1160" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02920" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="1" fbc:chemicalFormula="C8H13N2O2" hasOnlySubstanceUnits="false" id="M_pydam_c" metaid="M_pydam_c"
-      name="Pyridoxamine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pydam_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pydam" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PYRIDOXAMINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:131533" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14978" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16410" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26426" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45228" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57761" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8669" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01431" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62696" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00534" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM548" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00419" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-1" fbc:chemicalFormula="C6H13NO8P" hasOnlySubstanceUnits="false" id="M_gam6p_e" metaid="M_gam6p_e"
-      name="D-Glucosamine 6-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_gam6p_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/gam6p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-GLUCOSAMINE-6-P" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12962" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:47987" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58725" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00352" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM370" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00288" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-1" fbc:chemicalFormula="C6H4NO2" hasOnlySubstanceUnits="false" id="M_nac_e" metaid="M_nac_e" name="Nicotinate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_nac_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/nac" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:NIACINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14650" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15940" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22851" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25530" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25538" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32544" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44319" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7559" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01488" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00253" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00049" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM274" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00218" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C6H11O7" hasOnlySubstanceUnits="false" id="M_galctn__D_c" metaid="M_galctn__D_c"
-      name="D-Galactonate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_galctn__D_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/galctn__D" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-GALACTONATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12931" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16534" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24148" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24149" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4132" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00565" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00880" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1734" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00653" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C7H7O7" hasOnlySubstanceUnits="false" id="M_micit_c" metaid="M_micit_c"
-      name="Methylisocitrate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_micit_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/micit" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-618" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10869" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15607" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18550" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:189" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57429" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C04593" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01050444" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1694" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02799" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C27H49N2O8PRS" hasOnlySubstanceUnits="false" id="M_hdeACP_c" metaid="M_hdeACP_c"
-      name="Cis-hexadec-9-enoyl-[acyl-carrier protein] (n-C16:1)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_hdeACP_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/hdeACP" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM89949" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C8H15NO6" hasOnlySubstanceUnits="false" id="M_acmana_p" metaid="M_acmana_p"
-      name="N-Acetyl-D-mannosamine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_acmana_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/acmana" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:N-acetyl-D-mannosamine" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12459" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12573" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17122" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21538" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58019" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:63153" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7141" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62724" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00645" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2403" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00492" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="1" fbc:chemicalFormula="H4N" hasOnlySubstanceUnits="false" id="M_nh4_p" metaid="M_nh4_p" name="Ammonium">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_nh4_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/nh4" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:AMMONIA" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:AMMONIUM" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13405" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13406" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13407" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:135980" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13771" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16134" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22533" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22534" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28938" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29337" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29340" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44269" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44284" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44404" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49783" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7434" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7435" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00051" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB41827" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00014" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01342" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D02915" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D02916" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM15" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00013" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd19013" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C48H72CoN11O8" hasOnlySubstanceUnits="false" id="M_cbi_p" metaid="M_cbi_p"
-      name="Cobinamide">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cbi_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cbi" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:COBINAMIDE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48529" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1549" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C6H12O6" hasOnlySubstanceUnits="false" id="M_gal_bD_e" metaid="M_gal_bD_e"
-      name="Beta D-Galactose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_gal_bD_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/gal_bD" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GALACTOSE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10383" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22774" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27667" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42776" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42889" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03449" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00962" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM112" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00709" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="C10H11N4O8P" hasOnlySubstanceUnits="false" id="M_imp_p" metaid="M_imp_p"
-      name="IMP C10H11N4O8P">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_imp_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/imp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:IMP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12057" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12063" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13372" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13373" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14457" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17202" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19271" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43418" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43475" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43524" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43528" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43563" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43611" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:47501" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58053" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5849" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00130" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM125" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00114" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-3" fbc:chemicalFormula="C6H8O10P" hasOnlySubstanceUnits="false" id="M_glcur1p_p" metaid="M_glcur1p_p"
-      name="D-Glucuronate 1-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_glcur1p_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/glcur1p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-510" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11294" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16787" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19090" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21014" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28547" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35145" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4179" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57897" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:681" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03976" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06329" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05385" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1165" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00880" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03191" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C7H9O5" hasOnlySubstanceUnits="false" id="M_skm_p" metaid="M_skm_p" name="Shikimate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_skm_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/skm" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:SHIKIMATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15083" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16119" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26662" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26663" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26664" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:36208" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45740" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9133" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03070" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00493" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM602" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00383" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-4" fbc:chemicalFormula="C74H112N14O39" hasOnlySubstanceUnits="false" id="M_murein5px3p_p"
-      metaid="M_murein5px3p_p" name="Two disacharide linked murein units, pentapeptide corsslinked tripeptide (A2pm-&gt;A2pm) (middle of chain)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_murein5px3p_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/murein5px3p" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM5970" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15513" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C21H42NO7P1" hasOnlySubstanceUnits="false" id="M_2agpe161_p" metaid="M_2agpe161_p"
-      name="2-Acyl-sn-glycero-3-phosphoethanolamine (n-C16:1)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2agpe161_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2agpe161" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM3448" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-1" fbc:chemicalFormula="C6H9O7" hasOnlySubstanceUnits="false" id="M_5dglcn_e" metaid="M_5dglcn_e"
-      name="5-Dehydro-D-gluconate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_5dglcn_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/5dglcn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:5-DEHYDROGLUCONATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12120" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12121" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17426" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2051" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20564" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58143" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01062" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM963" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00781" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C20H30N6O12S2Se" hasOnlySubstanceUnits="false" id="M_dgslnt_c" metaid="M_dgslnt_c"
-      name="Selenodiglutathione">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dgslnt_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dgslnt" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-13908" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26634" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:71259" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C18870" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM7767" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd20131" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="HS2R" hasOnlySubstanceUnits="false" id="M_sufsesh_c" metaid="M_sufsesh_c"
-      name="SufSE with bound sulfur">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_sufsesh_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/sufsesh" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM147310" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-2" fbc:chemicalFormula="C12H12N2O5" hasOnlySubstanceUnits="false" id="M_4abzglu_e" metaid="M_4abzglu_e"
-      name="4-aminobenzoyl-glutamate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_4abzglu_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/4abzglu" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C6H9O5" hasOnlySubstanceUnits="false" id="M_lkdr_c" metaid="M_lkdr_c"
-      name="2-dehydro-3-deoxy-L-rhamnonate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_lkdr_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/lkdr" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C28H36N7O18P3S" hasOnlySubstanceUnits="false" id="M_3hbzcoa_c" metaid="M_3hbzcoa_c"
-      name="3-hydroxybenzoyl-CoA">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_3hbzcoa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/3hbzcoa" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H10O5" hasOnlySubstanceUnits="false" id="M_xylu__D_c" metaid="M_xylu__D_c"
-      name="D-Xylulose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_xylu__D_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/xylu__D" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-XYLULOSE" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:L-XYLULOSE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13035" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13190" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17140" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17399" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21120" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21425" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27353" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4268" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46514" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6326" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00654" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00751" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01644" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02245" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00310" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00312" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM597" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00259" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00261" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="1" fbc:chemicalFormula="C15H23N6O5S" hasOnlySubstanceUnits="false" id="M_amet_c" metaid="M_amet_c"
-      name="S-Adenosyl-L-methionine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_amet_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/amet" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:S-ADENOSYLMETHIONINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10786" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10833" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12742" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12757" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12760" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15414" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22036" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:33440" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:33442" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45607" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:527887" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:59789" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:67040" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8946" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01185" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62709" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00019" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM16" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00017" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="H2S" hasOnlySubstanceUnits="false" id="M_h2s_c" metaid="M_h2s_c" name="Hydrogen sulfide">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_h2s_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/h2s" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-7046" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-846" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:HS" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13356" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14414" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15138" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16136" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24639" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29919" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30488" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30489" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43058" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45489" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5787" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03276" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00283" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM89582" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00239" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd24697" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C29H44N7O18P3S" hasOnlySubstanceUnits="false" id="M_3oocoa_c" metaid="M_3oocoa_c"
-      name="3-Oxooctanoyl-CoA">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_3oocoa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/3oocoa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2106" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1645" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20175" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28264" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:62619" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05267" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07050249" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM706" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03121" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C8H14NO9P" hasOnlySubstanceUnits="false" id="M_acgam1p_c" metaid="M_acgam1p_c"
-      name="N-Acetyl-D-glucosamine 1-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_acgam1p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/acgam1p" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7125" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C04256" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM91871" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02611" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C12H22O11" hasOnlySubstanceUnits="false" id="M_malt_e" metaid="M_malt_e"
-      name="Maltose C12H22O11">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_malt_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/malt" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ALPHA-MALTOSE" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:MALTOSE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10300" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12340" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14568" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17306" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18167" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22463" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25144" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43893" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6668" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00208" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00897" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00044" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.glycan/G00275" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM165" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00179" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00665" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="2" fbc:chemicalFormula="Mn" hasOnlySubstanceUnits="false" id="M_mn2_e" metaid="M_mn2_e" name="Manganese">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_mn2_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/mn2" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21435" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25156" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29035" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49749" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01333" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C19610" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2255" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00030" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd20863" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C43H75N3O20P2" hasOnlySubstanceUnits="false" id="M_u23ga_c" metaid="M_u23ga_c"
-      name="UDP-2,3-bis(3-hydroxytetradecanoyl)glucosamine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_u23ga_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/u23ga" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:OH-MYRISTOYL" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:78847" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:82845" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C04652" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1199" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02835" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C6H12O5" hasOnlySubstanceUnits="false" id="M_fuc__L_c" metaid="M_fuc__L_c"
-      name="L-Fucose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_fuc__L_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/fuc__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-15619" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:L-fucoses" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48204" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62489" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM40586" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="1" fbc:chemicalFormula="C4H10NO" hasOnlySubstanceUnits="false" id="M_4abutn_c" metaid="M_4abutn_c"
-      name="4-Aminobutanal">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_4abutn_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/4abutn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:4-AMINO-BUTYRALDEHYDE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11960" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17769" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1785" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20316" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58264" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01080" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB60247" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00555" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM422" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00434" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd12219" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="1" fbc:chemicalFormula="C3H10N" hasOnlySubstanceUnits="false" id="M_tma_e" metaid="M_tma_e"
-      name="Trimethylamine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_tma_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/tma" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRIMETHYLAMINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15261" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18139" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27125" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27127" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58389" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9732" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00906" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00565" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM352" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00441" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C29H46N7O17P3S" hasOnlySubstanceUnits="false" id="M_occoa_c" metaid="M_occoa_c"
-      name="Octanoyl-CoA (n-C8:0CoA)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_occoa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/occoa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-196" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14681" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15533" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25651" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41542" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57386" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7724" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01070" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06257" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01944" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07050355" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM342" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01335" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H10O5" hasOnlySubstanceUnits="false" id="M_lyx__L_e" metaid="M_lyx__L_e"
-      name="L-Lyxose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_lyx__L_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/lyx__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-15867" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:62321" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01508" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM4641" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01067" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-4" fbc:chemicalFormula="C10H12N5O14P3" hasOnlySubstanceUnits="false" id="M_gtp_e" metaid="M_gtp_e"
-      name="GTP C10H12N5O14P3">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_gtp_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/gtp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GTP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13342" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15996" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24451" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:37565" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42934" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5234" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57600" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00044" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM51" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00038" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="C6H11O9P" hasOnlySubstanceUnits="false" id="M_man6p_p" metaid="M_man6p_p"
-      name="D-Mannose 6-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_man6p_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/man6p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-15979" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-15980" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:Mannose-6-phosphate" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13000" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17369" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4211" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48042" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48066" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58735" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00275" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM427" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00235" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C27H42N9O12" hasOnlySubstanceUnits="false" id="M_fecrm_un_c" metaid="M_fecrm_un_c"
-      name="Ferrichrome minus Fe(III)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_fecrm_un_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/fecrm_un" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2205" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM53290" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15462" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-6" fbc:chemicalFormula="C114H202N2O39P2" hasOnlySubstanceUnits="false" id="M_lipa_cold_p" metaid="M_lipa_cold_p"
-      name="Cold adapted KDO(2)-lipid (A)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_lipa_cold_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/lipa_cold" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:KDO2-LIPID-IVA-COLD" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61522" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61556" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM6016" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15493" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-4" fbc:chemicalFormula="C68H104N12O38" hasOnlySubstanceUnits="false" id="M_murein3p3p_p" metaid="M_murein3p3p_p"
-      name="Two linked disacharide tripeptide murein units (uncrosslinked, middle of chain)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_murein3p3p_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/murein3p3p" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM88348" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15501" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C17H31N2O8PRS" hasOnlySubstanceUnits="false" id="M_hexACP_c" metaid="M_hexACP_c"
-      name="Hexanoyl-ACP (n-C6:0ACP)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_hexACP_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/hexACP" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM90722" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C38H70O10P1" hasOnlySubstanceUnits="false" id="M_pg161_c" metaid="M_pg161_c"
-      name="Phosphatidylglycerol (dihexadec-9-enoyl, n-C16:1)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pg161_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pg161" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2330" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM75101" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15539" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd26463" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C29H58N1O8P1" hasOnlySubstanceUnits="false" id="M_pe120_p" metaid="M_pe120_p"
-      name="Phosphatidylethanolamine (didodecanoyl, n-C12:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pe120_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pe120" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-17088" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMGP02010098" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2858" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C3H6O" hasOnlySubstanceUnits="false" id="M_ppal_p" metaid="M_ppal_p" name="Propanal">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ppal_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ppal" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-665" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14898" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17153" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26281" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41359" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45052" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8468" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03366" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00479" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM821" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00371" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-12" fbc:chemicalFormula="C176H303N2O103P5" hasOnlySubstanceUnits="false" id="M_colipap_p" metaid="M_colipap_p"
-      name="Core oligosaccharide lipid A diphosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_colipap_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/colipap" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM147454" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C3H7O5S" hasOnlySubstanceUnits="false" id="M_dhps_p" metaid="M_dhps_p"
-      name="2,3-Dihydroxypropane-1-sulfonate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dhps_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dhps" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C8H7O3" hasOnlySubstanceUnits="false" id="M_2hptcl_c" metaid="M_2hptcl_c"
-      name="2-hydroxycyclohepta-1,4,6-triene-1-carboxylate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2hptcl_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2hptcl" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C9H7O3" hasOnlySubstanceUnits="false" id="M_phpyr_c" metaid="M_phpyr_c"
-      name="Phenylpyruvate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_phpyr_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/phpyr" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ENOL-PHENYLPYRUVATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PHENYL-PYRUVATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10548" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12811" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16815" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23912" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23914" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23915" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26009" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30851" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32815" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45005" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8105" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB12225" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00166" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C02763" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM210" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00143" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01784" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C6H8N3O4P" hasOnlySubstanceUnits="false" id="M_4ampm_c" metaid="M_4ampm_c"
-      name="4-Amino-2-methyl-5-phosphomethylpyrimidine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_4ampm_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/4ampm" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:AMINO-HYDROXYMETHYL-METHYL-PYR-P" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11954" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11958" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1779" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18032" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20309" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44219" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58354" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C04556" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM790" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02775" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C6H12O6" hasOnlySubstanceUnits="false" id="M_fru_e" metaid="M_fru_e" name="D-Fructose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_fru_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/fru" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-15382" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-Fructopyranose" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:FRU" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:Fructofuranose" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12923" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15824" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20929" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24104" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24110" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28757" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:37714" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:37721" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4118" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4119" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:47424" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48095" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5172" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62538" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00095" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01496" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05003" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C10906" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00114" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM175" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00082" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd19015" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd27040" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-1" fbc:chemicalFormula="C3H3O3" hasOnlySubstanceUnits="false" id="M_pyr_e" metaid="M_pyr_e" name="Pyruvate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pyr_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pyr" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PYRUVATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14987" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15361" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26462" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26466" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32816" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45253" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:86354" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8685" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00243" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62676" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00022" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01060077" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM23" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00020" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C16H26N3O14P2" hasOnlySubstanceUnits="false" id="M_dtdp4addg_c" metaid="M_dtdp4addg_c"
-      name="DTDP-4-amino-4,6-dideoxy-D-galactose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dtdp4addg_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dtdp4addg" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TDP-D-FUCOSAMINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10507" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14078" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15972" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23539" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57596" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:68492" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:68516" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C04346" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM114295" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02661" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd24124" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C79H126N3O22P2" hasOnlySubstanceUnits="false" id="M_unagamuf_c" metaid="M_unagamuf_c"
-      name="Undecaprenyl-diphospho N-acetylglucosamine-N-acetylmannosaminuronate-N-acetamido-4,6-dideoxy-D-galactose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_unagamuf_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/unagamuf" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:C55-PP-GLCNAC-MANNACA-FUC4NAC" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM6160" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15582" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C18H32O16" hasOnlySubstanceUnits="false" id="M_malttr_e" metaid="M_malttr_e"
-      name="Maltotriose C18H32O16">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_malttr_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/malttr" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:MALTOTRIOSE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25146" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27931" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43937" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61993" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6672" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01262" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01835" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM468" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01262" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C20H24N7O6" hasOnlySubstanceUnits="false" id="M_5mthf_c" metaid="M_5mthf_c"
-      name="5-Methyltetrahydrofolate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_5mthf_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/5mthf" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:5-METHYL-THF" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12146" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:136009" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15641" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18608" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20612" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2097" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01396" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00440" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D09353" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM318" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00345" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-2" fbc:chemicalFormula="HO3P" hasOnlySubstanceUnits="false" id="M_ppt_e" metaid="M_ppt_e" name="Phosphonate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ppt_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ppt" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-12755" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-12756" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PHOSPHONATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:X-PHOSPHATE-GROUP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14820" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16215" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26066" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26067" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26081" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29196" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29197" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29258" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29259" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:33462" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:36361" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:39856" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44976" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45060" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45064" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8154" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01443" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06701" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1683" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd04099" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd28344" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="1" fbc:chemicalFormula="Na" hasOnlySubstanceUnits="false" id="M_na1_p" metaid="M_na1_p" name="Sodium">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_na1_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/na1" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2422" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:NACL" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:NaF" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26717" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29101" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49766" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9175" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00588" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01330" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C14042" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D04874" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM27" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00971" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C3H6O3" hasOnlySubstanceUnits="false" id="M_glyald_p" metaid="M_glyald_p"
-      name="D-Glyceraldehyde">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_glyald_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/glyald" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLYCERALD" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12982" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17378" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21025" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:39973" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4186" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00577" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM435" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00448" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H10O5" hasOnlySubstanceUnits="false" id="M_rbl__D_c" metaid="M_rbl__D_c"
-      name="D-Ribulose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_rbl__D_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/rbl__D" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-RIBULOSE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13016" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17173" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21086" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4241" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00621" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00309" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM41271" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00258" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C4H9NO3" hasOnlySubstanceUnits="false" id="M_hom__L_e" metaid="M_hom__L_e"
-      name="L-Homoserine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_hom__L_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/hom__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:HOMO-SER" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13123" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15699" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21330" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43131" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57476" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6246" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00719" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00263" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM353" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00227" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-2" fbc:chemicalFormula="C9H12N3O7P" hasOnlySubstanceUnits="false" id="M_dcmp_e" metaid="M_dcmp_e"
-      name="DCMP C9H12N3O7P">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dcmp_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dcmp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DCMP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10493" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14070" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14071" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14115" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15918" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19242" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41838" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41875" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41881" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57566" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01202" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00239" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM266" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00206" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-2" fbc:chemicalFormula="C10H12N5O7P" hasOnlySubstanceUnits="false" id="M_dgmp_e" metaid="M_dgmp_e"
-      name="DGMP C10H12N5O7P">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dgmp_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dgmp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DGMP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10496" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14074" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16192" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19246" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41902" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41939" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41944" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42676" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42726" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42733" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45049" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:47449" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57673" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00362" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM546" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00296" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="CH2O" hasOnlySubstanceUnits="false" id="M_fald_c" metaid="M_fald_c" name="Formaldehyde">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_fald_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/fald" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CARBONYL-GROUP" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:FORMALDEHYDE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14274" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16842" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24077" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:337763" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5142" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01426" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00067" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00017" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM56" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00055" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-1" fbc:chemicalFormula="C9H11N3O7P" hasOnlySubstanceUnits="false" id="M_23ccmp_e" metaid="M_23ccmp_e"
-      name="2',3'-Cyclic CMP">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_23ccmp_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/23ccmp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-3713" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19213" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27652" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:60877" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:824" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C02354" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM3148" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01571" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-2" fbc:chemicalFormula="C15H22N2O17P2" hasOnlySubstanceUnits="false" id="M_udpg_e" metaid="M_udpg_e"
-      name="UDPglucose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_udpg_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/udpg" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-12575" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13498" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13505" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18066" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22103" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27234" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28532" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42885" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46228" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46229" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:52249" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58367" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58885" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9845" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9895" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00029" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.glycan/G10608" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM52" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00026" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd28293" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C8H15NO6" hasOnlySubstanceUnits="false" id="M_acgal_e" metaid="M_acgal_e"
-      name="N-Acetyl-D-galactosamine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_acgal_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/acgal" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:N-acetyl-D-galactosamine" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21502" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21600" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28037" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28800" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:546804" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7110" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7201" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01132" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM395" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00832" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd27607" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C29H51N2O9PRS" hasOnlySubstanceUnits="false" id="M_3ocvac11eACP_c"
-      metaid="M_3ocvac11eACP_c" name="3-oxo-cis-vacc-11-enoyl-[acyl-carrier protein]">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_3ocvac11eACP_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/3ocvac11eACP" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM6840" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15376" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C29H55N2O9PRS" hasOnlySubstanceUnits="false" id="M_3hoctaACP_c" metaid="M_3hoctaACP_c"
-      name="(R)-3-Hydroxyoctadecanoyl-[acyl-carrier protein]">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_3hoctaACP_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/3hoctaACP" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C16220" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM6417" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15371" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C23H46NO7P1" hasOnlySubstanceUnits="false" id="M_2agpe181_p" metaid="M_2agpe181_p"
-      name="2-Acyl-sn-glycero-3-phosphoethanolamine (n-C18:1)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2agpe181_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2agpe181" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM3449" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C18H35O2" hasOnlySubstanceUnits="false" id="M_ocdca_c" metaid="M_ocdca_c"
-      name="Octadecanoate (n-C18:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ocdca_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ocdca" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:STEARIC_ACID" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:231588" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25629" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25631" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28842" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45710" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00827" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01530" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00119" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01010018" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01010047" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM236" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01080" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C24H48O9P1" hasOnlySubstanceUnits="false" id="M_2agpg180_c" metaid="M_2agpg180_c"
-      name="2-Acyl-sn-glycero-3-phosphoglycerol (n-C18:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2agpg180_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2agpg180" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2133" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM150642" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd26427" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C17H32O7P1" hasOnlySubstanceUnits="false" id="M_2tdec7eg3p_p" metaid="M_2tdec7eg3p_p"
-      name="2-tetradec-7-enoyl-sn-glycerol 3-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2tdec7eg3p_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2tdec7eg3p" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM5490" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15362" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C25H36N7O19P3S" hasOnlySubstanceUnits="false" id="M_malcoame_c" metaid="M_malcoame_c"
-      name="Malonyl-CoA methyl ester">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_malcoame_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/malcoame" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-12454" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:71242" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:71244" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07050346" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM97130" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd20921" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C17H29N2O10PRS" hasOnlySubstanceUnits="false" id="M_gmeACP_c" metaid="M_gmeACP_c"
-      name="Glutaryl-[acyl-carrier protein] methyl ester">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_gmeACP_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/gmeACP" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:Glutaryl-ACP-methyl-esters" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C20375" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM11700" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd27180" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C10H10N5O6PS2Cu" hasOnlySubstanceUnits="false" id="M_mpt_c" metaid="M_mpt_c"
-      name="Molybdopterin">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_mpt_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/mpt" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-4" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44067" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44074" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58698" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6969" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02206" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05924" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1193" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03520" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C7H8O" hasOnlySubstanceUnits="false" id="M_4crsol_c" metaid="M_4crsol_c" name="P-Cresol">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_4crsol_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/4crsol" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-108" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11981" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17847" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1816" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20352" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44726" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01858" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB13762" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01468" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM828" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01042" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="1" fbc:chemicalFormula="C6H14NO5" hasOnlySubstanceUnits="false" id="M_gam_c" metaid="M_gam_c"
-      name="D-Glucosamine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_gam_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/gam" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLUCOSAMINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12961" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17315" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4162" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:47972" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:47977" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5417" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58723" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00329" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D04334" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM533" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00276" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01247" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd27103" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C9H12N2O6" hasOnlySubstanceUnits="false" id="M_psuri_p" metaid="M_psuri_p"
-      name="Pseudouridine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_psuri_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/psuri" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C3H5O6P" hasOnlySubstanceUnits="false" id="M_g3p_c" metaid="M_g3p_c"
-      name="Glyceraldehyde 3-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_g3p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/g3p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GAP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12983" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12984" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14333" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17138" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:181" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18324" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21026" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29052" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5446" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58027" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:59776" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01112" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00118" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00661" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM74" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00102" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd19005" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C2H6O" hasOnlySubstanceUnits="false" id="M_etoh_c" metaid="M_etoh_c" name="Ethanol">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_etoh_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/etoh" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ETOH" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14222" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16236" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23978" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30878" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30880" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42377" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44594" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4879" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:52092" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00108" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00469" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00068" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D02798" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D04855" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D06542" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM303" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00363" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="O3S" hasOnlySubstanceUnits="false" id="M_so3_c" metaid="M_so3_c" name="Sulfite">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_so3_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/so3" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:H2SO3" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:HSO3" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:SO3" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13367" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15139" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17137" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17359" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26837" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29214" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:33543" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45548" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48854" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5598" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9344" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00240" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01033" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03008" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB34829" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00094" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C11481" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM105630" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00081" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C9H13N4O8P" hasOnlySubstanceUnits="false" id="M_aicar_c" metaid="M_aicar_c"
-      name="5-Amino-1-(5-Phospho-D-ribosyl)imidazole-4-carboxamide">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_aicar_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/aicar" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:AICAR" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12102" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18406" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18966" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40739" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:573" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58475" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01517" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C04677" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM365" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02851" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C6H11O7" hasOnlySubstanceUnits="false" id="M_altrn_c" metaid="M_altrn_c"
-      name="D-Altronate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_altrn_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/altrn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-ALTRONATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12908" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17360" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20904" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4095" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46644" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58707" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00817" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2011" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00608" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C6H9O7" hasOnlySubstanceUnits="false" id="M_fruur_c" metaid="M_fruur_c"
-      name="D-Fructuronate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_fruur_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/fruur" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:FRUCTURONATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12927" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16849" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20936" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20937" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24112" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24113" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4126" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:47950" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:59863" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:59881" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00905" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1660" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00672" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd27042" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-1" fbc:chemicalFormula="C2H3O2" hasOnlySubstanceUnits="false" id="M_ac_e" metaid="M_ac_e" name="Acetate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ac_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ac" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ACET" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13704" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15366" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22165" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22169" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2387" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30089" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40480" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40486" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00042" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00033" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00010" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01010002" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM26" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00029" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="1" fbc:chemicalFormula="K" hasOnlySubstanceUnits="false" id="M_k_e" metaid="M_k_e" name="Potassium">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_k_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/k" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:KCL" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26219" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29103" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49685" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8345" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00586" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00238" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C12568" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D01168" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D08403" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM95" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00205" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C34H64NO12P" hasOnlySubstanceUnits="false" id="M_lipidX_c" metaid="M_lipidX_c"
-      name="2,3-Bis(3-hydroxytetradecanoyl)-beta-D-glucosaminyl 1-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_lipidX_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/lipidX" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:BISOHMYR-GLUCOSAMINYL-1P" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11413" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16942" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19303" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57957" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:870" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C04824" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMSL01020001" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1839" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02930" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd29679" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C6H11O9P" hasOnlySubstanceUnits="false" id="M_mi1p__D_c" metaid="M_mi1p__D_c"
-      name="1D-myo-Inositol 1-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_mi1p__D_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/mi1p__D" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-MYO-INOSITOL-1-MONOPHOSPHATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11220" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11354" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12828" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12895" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18297" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19207" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43432" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58433" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:818" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01177" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM646" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00867" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C2H7NO3S" hasOnlySubstanceUnits="false" id="M_taur_e" metaid="M_taur_e"
-      name="Taurine C2H7NO3S">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_taur_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/taur" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TAURINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15195" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15891" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26852" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32970" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45877" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:507393" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9406" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00251" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00245" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00047" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM282" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00210" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C6H11O7" hasOnlySubstanceUnits="false" id="M_glcn_p" metaid="M_glcn_p"
-      name="D-Gluconate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_glcn_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/glcn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLUCONATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12955" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18391" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20983" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20985" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20986" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24265" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24266" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:33198" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4157" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42715" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00625" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03373" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00257" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM341" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00222" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H5N5O" hasOnlySubstanceUnits="false" id="M_gua_p" metaid="M_gua_p" name="Guanine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_gua_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/gua" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GUANINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14371" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14372" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16235" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24443" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42948" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5563" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00132" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00242" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM259" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00207" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-3" fbc:chemicalFormula="C9H18O6N3" hasOnlySubstanceUnits="false" id="M_fe3hox_un_p" metaid="M_fe3hox_un_p"
-      name="Fe(III)hydoxamate, unloaded">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_fe3hox_un_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/fe3hox_un" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2175" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM90823" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15461" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-2" fbc:chemicalFormula="C10H11N4O9P" hasOnlySubstanceUnits="false" id="M_xmp_e" metaid="M_xmp_e"
-      name="Xanthosine 5'-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_xmp_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/xmp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:XANTHOSINE-5-PHOSPHATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10067" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10938" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15324" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15652" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27328" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57464" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62755" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00655" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM298" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00497" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="O3S" hasOnlySubstanceUnits="false" id="M_so3_p" metaid="M_so3_p" name="Sulfite">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_so3_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/so3" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:H2SO3" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:HSO3" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:SO3" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13367" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15139" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17137" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17359" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26837" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29214" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:33543" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45548" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48854" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5598" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9344" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00240" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01033" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03008" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB34829" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00094" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C11481" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM105630" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00081" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-3" fbc:chemicalFormula="C6H8O10P" hasOnlySubstanceUnits="false" id="M_glcur1p_e" metaid="M_glcur1p_e"
-      name="D-Glucuronate 1-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_glcur1p_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/glcur1p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-510" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11294" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16787" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19090" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21014" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28547" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35145" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4179" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57897" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:681" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03976" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06329" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05385" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1165" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00880" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03191" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C21H37N2O8PRS" hasOnlySubstanceUnits="false" id="M_tdec2eACP_c" metaid="M_tdec2eACP_c"
-      name="Trans-Dec-2-enoyl-[acyl-carrier protein]">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_tdec2eACP_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/tdec2eACP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10724" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05754" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07060012" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM28221" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd11475" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C3H5O3" hasOnlySubstanceUnits="false" id="M_3hpp_p" metaid="M_3hpp_p"
-      name="3-Hydroxypropanoate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_3hpp_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/3hpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:3-HYDROXY-PROPIONATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11836" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1553" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16510" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20071" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20079" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:33404" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40000" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01013" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM872" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00745" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C18H31N2O10PRS" hasOnlySubstanceUnits="false" id="M_pimACP_c" metaid="M_pimACP_c"
-      name="Pimeloyl-[acyl-carrier protein]">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pimACP_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pimACP" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:Pimeloyl-ACPs" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C19845" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM12695" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd21087" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C24H37O5" hasOnlySubstanceUnits="false" id="M_dhcholn_c" metaid="M_dhcholn_c"
-      name="3?,12?-dihydroxy-7-oxo-5?-cholan-24-oate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dhcholn_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dhcholn" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="HO4P" hasOnlySubstanceUnits="false" id="M_pi_c" metaid="M_pi_c" name="Phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pi_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pi" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-16459" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-9010" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PHOSPHATE-GROUP" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:Pi" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14791" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18367" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26078" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29137" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29139" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35780" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:39739" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:39745" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43470" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43474" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45024" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7793" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00973" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01429" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02105" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02142" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB05947" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00009" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C13558" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D05467" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM9" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00009" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd27787" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C10H17N4O6" hasOnlySubstanceUnits="false" id="M_argsuc_c" metaid="M_argsuc_c"
-      name="N(omega)-(L-Arginino)succinate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_argsuc_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/argsuc" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:L-ARGININO-SUCCINATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10960" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15682" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21475" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57472" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7098" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C03406" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM550" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02152" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd29673" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C10H8O6" hasOnlySubstanceUnits="false" id="M_chor_c" metaid="M_chor_c"
-      name="Chorismate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_chor_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/chor" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CHORISMATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13993" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17333" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23225" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23227" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29748" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:3677" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB12199" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00251" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM337" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00216" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C4H9NO3" hasOnlySubstanceUnits="false" id="M_hom__L_c" metaid="M_hom__L_c"
-      name="L-Homoserine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_hom__L_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/hom__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:HOMO-SER" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13123" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15699" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21330" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43131" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57476" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6246" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00719" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00263" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM353" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00227" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C10H14N2O5" hasOnlySubstanceUnits="false" id="M_thymd_c" metaid="M_thymd_c"
-      name="Thymidine C10H14N2O5">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_thymd_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/thymd" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:THYMIDINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15244" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17748" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19273" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45782" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45834" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45917" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45918" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:53527" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9579" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00273" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00214" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM420" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00184" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C10H12N5O10P2" hasOnlySubstanceUnits="false" id="M_dgdp_c" metaid="M_dgdp_c"
-      name="DGDP C10H12N5O10P2">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dgdp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dgdp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DGDP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10495" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19245" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28862" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41949" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58595" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00960" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00361" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM436" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00295" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H9NO3" hasOnlySubstanceUnits="false" id="M_glu1sa_c" metaid="M_glu1sa_c"
-      name="L-Glutamate 1-semialdehyde">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_glu1sa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/glu1sa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLUTAMATE-1-SEMIALDEHYDE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11022" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15757" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18756" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24312" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:404" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42823" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42827" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57501" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C03741" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1453" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02345" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-3" fbc:chemicalFormula="C6H5O7" hasOnlySubstanceUnits="false" id="M_cit_e" metaid="M_cit_e" name="Citrate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cit_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cit" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CIT" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:132362" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:133748" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13999" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16947" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23321" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23322" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30769" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35802" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35804" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35806" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35808" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35809" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35810" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:3727" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41523" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42563" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:76049" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:79399" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00094" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00158" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C13660" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00037" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM131" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00137" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C6H13NO2" hasOnlySubstanceUnits="false" id="M_leu__L_e" metaid="M_leu__L_e"
-      name="L-Leucine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_leu__L_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/leu__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:LEU" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10866" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13131" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15603" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21348" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25017" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32619" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32620" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32627" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32628" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43646" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43695" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43733" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43814" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57427" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6260" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00687" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62203" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00123" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C16439" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00030" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01100048" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM140" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00107" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15143" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C49H76O4" hasOnlySubstanceUnits="false" id="M_q8h2_c" metaid="M_q8h2_c"
-      name="Ubiquinol-8">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_q8h2_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/q8h2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-9956" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61682" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01060" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM191" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15561" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd29608" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C3H7NO2" hasOnlySubstanceUnits="false" id="M_ala__D_e" metaid="M_ala__D_e"
-      name="D-Alanine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ala__D_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ala__D" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-ALANINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10840" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12899" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15570" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20893" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32435" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32436" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4087" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41756" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41798" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41848" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41877" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57416" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01310" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00133" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM156" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00117" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="2" fbc:chemicalFormula="Fe" hasOnlySubstanceUnits="false" id="M_fe2_e" metaid="M_fe2_e" name="Fe2+ mitochondria">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_fe2_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/fe2" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13319" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13321" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21129" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24876" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29033" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:34754" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49599" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00692" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C14818" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM111" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd10515" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C6H14O6" hasOnlySubstanceUnits="false" id="M_galt_e" metaid="M_galt_e" name="Galactitol">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_galt_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/galt" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GALACTITOL" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14286" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16813" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24139" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5251" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:53575" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00107" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01697" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1233" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01171" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C71H113N2O18P2" hasOnlySubstanceUnits="false" id="M_unagamu_c" metaid="M_unagamu_c"
-      name="Undecaprenyl-diphospho-N-acetylglucosamine-N-acetylmannosaminuronate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_unagamu_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/unagamu" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:C55-PP-GLCNAC-MANNACA" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61495" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61561" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:62960" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB12306" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C20497" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2504" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15581" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C14H17N2O7P" hasOnlySubstanceUnits="false" id="M_5prdmbz_c" metaid="M_5prdmbz_c"
-      name="N1-(5-Phospho-alpha-D-ribosyl)-5,6-dimethylbenzimidazole">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_5prdmbz_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/5prdmbz" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ALPHA-RIBAZOLE-5-P" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12622" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16837" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21797" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30599" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45218" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45255" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45256" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57918" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7355" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C04778" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1224" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02904" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-1" fbc:chemicalFormula="CNO" hasOnlySubstanceUnits="false" id="M_cynt_e" metaid="M_cynt_e" name="Cyanate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cynt_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cynt" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-69" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14037" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23419" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23422" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28024" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29195" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29202" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:3968" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02078" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01417" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C19067" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1191" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01015" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-3" fbc:chemicalFormula="C6H5O7" hasOnlySubstanceUnits="false" id="M_cit_p" metaid="M_cit_p" name="Citrate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cit_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cit" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CIT" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:132362" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:133748" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13999" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16947" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23321" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23322" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30769" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35802" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35804" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35806" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35808" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35809" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35810" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:3727" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41523" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42563" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:76049" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:79399" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00094" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00158" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C13660" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00037" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM131" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00137" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H4N4O2" hasOnlySubstanceUnits="false" id="M_xan_p" metaid="M_xan_p" name="Xanthine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_xan_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/xan" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:XANTHINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10059" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15318" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17712" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27317" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46377" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48517" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00292" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00385" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM174" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00309" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C6H9O7" hasOnlySubstanceUnits="false" id="M_fruur_p" metaid="M_fruur_p"
-      name="D-Fructuronate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_fruur_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/fruur" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:FRUCTURONATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12927" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16849" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20936" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20937" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24112" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24113" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4126" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:47950" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:59863" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:59881" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00905" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1660" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00672" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd27042" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="1" fbc:chemicalFormula="C9H20O3N3" hasOnlySubstanceUnits="false" id="M_ggptrc_c" metaid="M_ggptrc_c"
-      name="Gamma-glutamyl-putrescine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ggptrc_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ggptrc" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48006" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM54308" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15478" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-2" fbc:chemicalFormula="C2H2O5S" hasOnlySubstanceUnits="false" id="M_sulfac_e" metaid="M_sulfac_e"
-      name="Sulfoacetate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_sulfac_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/sulfac" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-10246" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:34987" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49876" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:50519" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58824" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C14179" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1949" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd09878" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C38H73N1O10P1" hasOnlySubstanceUnits="false" id="M_ps160_c" metaid="M_ps160_c"
-      name="Phosphatidylserine (dihexadecanoyl, n-C16:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ps160_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ps160" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-12817" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:111515" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:84523" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00614" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMGP03010029" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM32181" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15555" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd23595" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C30H58O10P1" hasOnlySubstanceUnits="false" id="M_pg120_c" metaid="M_pg120_c"
-      name="Phosphatidylglycerol (didodecanoyl, n-C12:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pg120_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pg120" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1771" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C19H38NO7P1" hasOnlySubstanceUnits="false" id="M_2agpe141_p" metaid="M_2agpe141_p"
-      name="2-Acyl-sn-glycero-3-phosphoethanolamine (n-C14:1)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2agpe141_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2agpe141" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM3447" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C48H92O11P" hasOnlySubstanceUnits="false" id="M_apg140_c" metaid="M_apg140_c"
-      name="Acyl phosphatidylglycerol (n-C14:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_apg140_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/apg140" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2192" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM40227" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd26440" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C11H7O4" hasOnlySubstanceUnits="false" id="M_dhna_c" metaid="M_dhna_c"
-      name="1,4-Dihydroxy-2-naphthoate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dhna_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dhna" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DIHYDROXYNAPHTHOATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11173" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18094" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18933" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:539" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C03657" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM552" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02295" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C6H11O7" hasOnlySubstanceUnits="false" id="M_galctn__L_c" metaid="M_galctn__L_c"
-      name="L-Galactonate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_galctn__L_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/galctn__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-1083" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:37425" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:53071" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C15930" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM636" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd14659" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-6" fbc:chemicalFormula="C114H202N2O39P2" hasOnlySubstanceUnits="false" id="M_lipa_cold_e" metaid="M_lipa_cold_e"
-      name="Cold adapted KDO(2)-lipid (A)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_lipa_cold_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/lipa_cold" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:KDO2-LIPID-IVA-COLD" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61522" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61556" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM6016" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15493" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C40H44N20O27P4S4W" hasOnlySubstanceUnits="false" id="M_bwcogdp_c" metaid="M_bwcogdp_c"
-      name="Tungsten bispterin cofactor guanine dinucleotide">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_bwcogdp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/bwcogdp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM149209" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="2" fbc:chemicalFormula="C6H10N4" hasOnlySubstanceUnits="false" id="M_thptdn_c" metaid="M_thptdn_c"
-      name="5,6,7,8-tetrahydropteridine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_thptdn_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/thptdn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:5678-TETRAHYDROPTERIDINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12077" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13613" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20507" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26918" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28889" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30436" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9487" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01216" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05650" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM3185" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03361" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C6H10O10P" hasOnlySubstanceUnits="false" id="M_6pgc_c" metaid="M_6pgc_c"
-      name="6-Phospho-D-gluconate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_6pgc_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/6pgc" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-2961" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12232" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16863" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2231" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:33851" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40282" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48928" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58759" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01316" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62800" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00345" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM325" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00284" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C15H22N2O17P2" hasOnlySubstanceUnits="false" id="M_udpgal_c" metaid="M_udpgal_c"
-      name="UDPgalactose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_udpgal_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/udpgal" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-14553" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13487" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13495" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18307" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22100" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42751" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58439" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:66914" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:67119" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9811" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62573" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00052" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.glycan/G10609" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM89795" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00043" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd30770" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="1" fbc:chemicalFormula="H4N" hasOnlySubstanceUnits="false" id="M_nh4_c" metaid="M_nh4_c" name="Ammonium">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_nh4_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/nh4" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:AMMONIA" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:AMMONIUM" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13405" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13406" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13407" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:135980" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13771" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16134" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22533" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22534" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28938" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29337" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29340" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44269" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44284" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44404" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49783" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7434" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7435" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00051" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB41827" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00014" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01342" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D02915" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D02916" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM15" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00013" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd19013" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C6H11O8P" hasOnlySubstanceUnits="false" id="M_rml1p_c" metaid="M_rml1p_c"
-      name="L-Rhamnulose 1-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_rml1p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/rml1p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RHAMNULOSE-1P" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13162" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17892" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21381" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58313" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6294" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01131" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1675" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00831" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C9H13N3O5" hasOnlySubstanceUnits="false" id="M_cytd_c" metaid="M_cytd_c" name="Cytidine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cytd_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cytd" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CYTIDINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14063" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17562" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23515" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4053" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41649" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41686" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41704" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41709" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00089" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00475" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D07769" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM338" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00367" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H6N2O2" hasOnlySubstanceUnits="false" id="M_thym_c" metaid="M_thym_c"
-      name="Thymine C5H6N2O2">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_thym_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/thym" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:THYMINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15247" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17821" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27004" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46017" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9580" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00262" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00178" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM386" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00151" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-5" fbc:chemicalFormula="C32H39N7O20P3S" hasOnlySubstanceUnits="false" id="M_sbzcoa_c" metaid="M_sbzcoa_c"
-      name="O-Succinylbenzoyl-CoA">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_sbzcoa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/sbzcoa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-6972" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12700" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1279" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12836" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15509" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19779" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57364" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C03160" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1132" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02021" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C6H12O6" hasOnlySubstanceUnits="false" id="M_gal_e" metaid="M_gal_e" name="D-Galactose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_gal_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/gal" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ALPHA-D-GALACTOSE" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-galactopyranose" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10231" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12936" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22373" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28061" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4139" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42741" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00143" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB05762" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00124" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00984" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D04291" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM390" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00108" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00724" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C11H18NO9" hasOnlySubstanceUnits="false" id="M_acnam_c" metaid="M_acnam_c"
-      name="N-Acetylneuraminate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_acnam_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/acnam" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:N-ACETYLNEURAMINATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12471" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12579" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17012" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21617" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21620" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29087" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:33987" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35418" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7214" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00230" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00800" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00270" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM227" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00232" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd27569" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C3H6O3" hasOnlySubstanceUnits="false" id="M_dha_e" metaid="M_dha_e"
-      name="Dihydroxyacetone">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dha_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dha" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DIHYDROXYACETONE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14340" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16016" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24354" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:39809" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5453" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01882" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00184" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D07841" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM460" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00157" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="1" fbc:chemicalFormula="C2H6NO" hasOnlySubstanceUnits="false" id="M_aacald_c" metaid="M_aacald_c"
-      name="Aminoacetaldehyde">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_aacald_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/aacald" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-1772" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13766" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17628" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22486" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2647" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42833" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58213" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06735" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2212" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd04122" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C7H15NO2" hasOnlySubstanceUnits="false" id="M_gbbtn_p" metaid="M_gbbtn_p"
-      name="Gamma-butyrobetaine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_gbbtn_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/gbbtn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GAMMA-BUTYROBETAINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12047" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16244" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1941" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20484" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01161" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06831" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01181" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM626" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00870" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C4H9NO2" hasOnlySubstanceUnits="false" id="M_4abut_p" metaid="M_4abut_p"
-      name="4-Aminobutanoate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_4abut_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/4abut" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:4-AMINO-BUTYRATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11961" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16865" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1786" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:193777" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20317" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20318" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30566" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40483" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:59888" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00112" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00334" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00058" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01100039" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM192" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00281" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C6H14O6" hasOnlySubstanceUnits="false" id="M_mnl_p" metaid="M_mnl_p" name="D-Mannitol">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_mnl_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/mnl" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:MANNITOL" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12996" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:130180" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14574" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16899" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21050" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25163" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29864" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44192" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6686" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00765" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01363" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00392" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00062" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM615" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00314" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C3H8O2" hasOnlySubstanceUnits="false" id="M_12ppd__R_c" metaid="M_12ppd__R_c"
-      name="(R)-Propane-1,2-diol">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_12ppd__R_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/12ppd__R" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-8891" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18705" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28972" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:352" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44863" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C02912" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM90191" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01861" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C10H13N5O3" hasOnlySubstanceUnits="false" id="M_dad_5_c" metaid="M_dad_5_c"
-      name="5'-Deoxyadenosine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dad_5_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dad_5" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CH33ADO" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12061" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17319" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1960" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20493" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40099" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01983" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05198" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM316" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03091" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C15H25N4O8" hasOnlySubstanceUnits="false" id="M_LalaDgluMdap_p"
-      metaid="M_LalaDgluMdap_p" name="L-alanine-D-glutamate-meso-2,6-diaminoheptanedioate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_LalaDgluMdap_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/LalaDgluMdap" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM90242" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15386" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-6" fbc:chemicalFormula="C124H220N2O51P2" hasOnlySubstanceUnits="false" id="M_hhlipa_c" metaid="M_hhlipa_c"
-      name="Heptosyl-heptosyl-kdo2-lipidA">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_hhlipa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/hhlipa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-930" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61507" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61523" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2582" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15484" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C28H46N8O18P3S" hasOnlySubstanceUnits="false" id="M_crnDcoa_c" metaid="M_crnDcoa_c"
-      name="D-carnitinyl-CoA">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_crnDcoa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/crnDcoa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-CARNITINYL-COA" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:62047" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:62194" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07050162" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM3411" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15439" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="2" fbc:chemicalFormula="Zn" hasOnlySubstanceUnits="false" id="M_zn2_c" metaid="M_zn2_c" name="Zinc">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_zn2_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/zn2" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10113" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27368" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29105" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49972" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49982" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01303" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00038" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C12570" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D01170" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM149" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00034" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-1" fbc:chemicalFormula="C7H9O5" hasOnlySubstanceUnits="false" id="M_skm_e" metaid="M_skm_e" name="Shikimate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_skm_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/skm" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:SHIKIMATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15083" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16119" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26662" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26663" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26664" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:36208" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45740" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9133" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03070" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00493" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM602" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00383" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C21H37N2O9PRS" hasOnlySubstanceUnits="false" id="M_3odecACP_c" metaid="M_3odecACP_c"
-      name="3-Oxodecanoyl-[acyl-carrier protein]">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_3odecACP_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/3odecACP" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:3-oxo-decanoyl-ACPs" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1634" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05753" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07060011" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM26616" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd11487" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C17H33O7P1" hasOnlySubstanceUnits="false" id="M_1tdecg3p_c" metaid="M_1tdecg3p_c"
-      name="1-tetradecanoyl-sn-glycerol 3-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_1tdecg3p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/1tdecg3p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-18379" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:62833" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:72683" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62321" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMGP10050007" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM3426" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15331" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C31H59O8P1" hasOnlySubstanceUnits="false" id="M_pa140_c" metaid="M_pa140_c"
-      name="1,2-ditetradecanoyl-sn-glycerol 3-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pa140_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pa140" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-1425" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:62085" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:83321" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:83550" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:84266" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMGP10010026" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM51017" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15522" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd26150" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C40H67N3O15P2" hasOnlySubstanceUnits="false" id="M_cdpdtdec7eg_c"
-      metaid="M_cdpdtdec7eg_c" name="CDP-1,2-ditetradec-7-enoylglycerol">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cdpdtdec7eg_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cdpdtdec7eg" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:103990" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM4511" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15422" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C19H40NO7P1" hasOnlySubstanceUnits="false" id="M_2agpe140_c" metaid="M_2agpe140_c"
-      name="2-Acyl-sn-glycero-3-phosphoethanolamine (n-C14:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2agpe140_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2agpe140" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2165" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB11470" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMGP02050033" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM34809" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd26435" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="O3Te" hasOnlySubstanceUnits="false" id="M_teo2_c" metaid="M_teo2_c" name="Tellurite">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_teo2_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/teo2" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C9H11NO3" hasOnlySubstanceUnits="false" id="M_tyr__L_c" metaid="M_tyr__L_c"
-      name="L-Tyrosine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_tyr__L_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/tyr__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TYR" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13181" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15277" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17895" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18186" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21411" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27176" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32760" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32761" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32762" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32784" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32785" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32786" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46070" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46161" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58315" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6313" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9800" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00158" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00647" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00082" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01536" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00022" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM76" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00069" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd30745" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C3H7NO2S" hasOnlySubstanceUnits="false" id="M_cys__L_c" metaid="M_cys__L_c"
-      name="L-Cysteine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cys__L_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cys__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CYS" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13095" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14061" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15356" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17561" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21261" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23508" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32442" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32443" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32445" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32456" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32457" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32458" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35235" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35237" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4050" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41227" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41700" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41768" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41781" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41811" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6207" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00574" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00097" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00736" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00026" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM55" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00084" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00547" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C4H7NO3" hasOnlySubstanceUnits="false" id="M_2aobut_c" metaid="M_2aobut_c"
-      name="L-2-Amino-3-oxobutanoate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2aobut_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2aobut" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:AMINO-OXOBUT" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13048" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16944" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21195" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35229" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40668" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40673" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6156" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:78948" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06454" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C03508" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01060172" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM114087" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02211" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C9H16N4O6" hasOnlySubstanceUnits="false" id="M_4r5au_c" metaid="M_4r5au_c"
-      name="4-(1-D-Ribitylamino)-5-aminouracil">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_4r5au_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/4r5au" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:AMINO-RIBOSYLAMINO-1H-3H-PYR-DIONE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11929" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15934" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1761" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20283" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:52403" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57573" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C04732" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM791" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02882" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd29668" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="1" fbc:chemicalFormula="C6H14NO5" hasOnlySubstanceUnits="false" id="M_gam_e" metaid="M_gam_e"
-      name="D-Glucosamine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_gam_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/gam" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLUCOSAMINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12961" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17315" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4162" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:47972" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:47977" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5417" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58723" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00329" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D04334" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM533" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00276" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01247" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd27103" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H11NO2S" hasOnlySubstanceUnits="false" id="M_met__L_e" metaid="M_met__L_e"
-      name="L-Methionine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_met__L_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/met__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:MET" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13141" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14590" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16643" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16811" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21360" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25229" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32631" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32632" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32644" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32646" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43990" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57844" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6271" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:64558" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6829" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00696" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB33951" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00073" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01733" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00019" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D04983" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D04984" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM61" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00060" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd30746" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C7H5O3" hasOnlySubstanceUnits="false" id="M_4hbz_c" metaid="M_4hbz_c"
-      name="4-Hydroxybenzoate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_4hbz_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/4hbz" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:4-hydroxybenzoate" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12003" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17879" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1858" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20397" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20398" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30763" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44949" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00500" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00156" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM164" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00136" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-7" fbc:chemicalFormula="C42H41N4O16" hasOnlySubstanceUnits="false" id="M_dscl_c" metaid="M_dscl_c"
-      name="Dihydrosirohydrochlorin">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dscl_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dscl" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DIHYDROSIROHYDROCHLORIN" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14870" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:50602" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58827" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8370" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C02463" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM672" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01620" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C4H8NO7P" hasOnlySubstanceUnits="false" id="M_phthr_c" metaid="M_phthr_c"
-      name="O-Phospho-4-hydroxy-L-threonine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_phthr_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/phthr" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:4-PHOSPHONOOXY-THREONINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11945" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18336" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21963" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58452" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:59459" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7690" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06802" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06055" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM759" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03607" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd22119" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C8H15NO6" hasOnlySubstanceUnits="false" id="M_acmana_e" metaid="M_acmana_e"
-      name="N-Acetyl-D-mannosamine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_acmana_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/acmana" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:N-acetyl-D-mannosamine" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12459" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12573" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17122" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21538" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58019" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:63153" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7141" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62724" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00645" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2403" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00492" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="2" fbc:chemicalFormula="C9H23N3O" hasOnlySubstanceUnits="false" id="M_n8aspmd_c" metaid="M_n8aspmd_c"
-      name="N8-Acetylspermidine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_n8aspmd_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/n8aspmd" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-3462" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21900" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27911" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58535" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7420" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02189" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB60288" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01029" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1679" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00758" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C6H8O6" hasOnlySubstanceUnits="false" id="M_ascb__L_e" metaid="M_ascb__L_e"
-      name="L-Ascorbate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ascb__L_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ascb__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ASCORBATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13082" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13861" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17208" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21240" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2868" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29073" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:38290" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40892" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43473" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00044" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB14273" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB29945" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00072" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C20364" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00018" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM89592" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00059" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C10H14N2O5" hasOnlySubstanceUnits="false" id="M_thymd_p" metaid="M_thymd_p"
-      name="Thymidine C10H14N2O5">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_thymd_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/thymd" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:THYMIDINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15244" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17748" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19273" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45782" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45834" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45917" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45918" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:53527" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9579" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00273" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00214" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM420" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00184" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C10H11N4O13P3" hasOnlySubstanceUnits="false" id="M_ditp_c" metaid="M_ditp_c"
-      name="DITP(4-)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ditp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ditp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DITP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10499" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19251" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28807" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61382" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01345" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1325" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00977" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="1" fbc:chemicalFormula="C3H9N2O2" hasOnlySubstanceUnits="false" id="M_23dappa_e" metaid="M_23dappa_e"
-      name="2,3-diaminopropionate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_23dappa_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/23dappa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:23-Diaminopropanoate" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:L-23-DIAMINOPROPANOATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11419" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13043" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16303" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18383" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19309" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21190" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42159" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42164" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49983" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57721" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58468" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6153" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:84374" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:876" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02006" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C03401" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06393" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01100051" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM91374" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02150" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03828" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd21925" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C38H56N8O27P2" hasOnlySubstanceUnits="false" id="M_um4p_c" metaid="M_um4p_c"
-      name="UDP-N-acetylmuramoyl-L-alanyl-D-gamma-glutamyl-meso-2,6-diaminopimelate-D-alanine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_um4p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/um4p" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM147329" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15579" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C61H99N1O8P1" hasOnlySubstanceUnits="false" id="M_uLa4fn_c" metaid="M_uLa4fn_c"
-      name="Undecaprenyl phosphate-4-amino-4-formyl-L-arabinose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_uLa4fn_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/uLa4fn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2153" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM88505" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15575" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-6" fbc:chemicalFormula="C110H196N2O39P2" hasOnlySubstanceUnits="false" id="M_lipa_p" metaid="M_lipa_p"
-      name="KDO(2)-lipid (A)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_lipa_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/lipa" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23656" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27963" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4476" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58540" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06026" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMSL02000001" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM946" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03587" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="2" fbc:chemicalFormula="Zn" hasOnlySubstanceUnits="false" id="M_zn2_p" metaid="M_zn2_p" name="Zinc">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_zn2_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/zn2" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10113" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27368" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29105" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49972" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49982" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01303" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00038" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C12570" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D01170" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM149" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00034" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="2" fbc:chemicalFormula="Hg" hasOnlySubstanceUnits="false" id="M_hg2_c" metaid="M_hg2_c"
-      name="Mercury  charged 2  Hg">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_hg2_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/hg2" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13370" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16793" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25199" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25200" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49640" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5714" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03625" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00703" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C13377" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C18670" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D01905" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1562" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00531" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-6" fbc:chemicalFormula="C26H40N7O26P5S" hasOnlySubstanceUnits="false" id="M_2tpr3dpcoa_c"
-      metaid="M_2tpr3dpcoa_c" name="2'-(5''-triphosphoribosyl)-3'-dephospho-CoA">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2tpr3dpcoa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2tpr3dpcoa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:2-5-TRIPHOSPHORIBOSYL-3-DEPHOSPHO-" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11392" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61378" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C19771" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07050169" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2769" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15364" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C6H10O5" hasOnlySubstanceUnits="false" id="M_bglycogen_c" metaid="M_bglycogen_c"
-      name="Branching glycogen">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_bglycogen_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/bglycogen" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM8348" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15413" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="X" hasOnlySubstanceUnits="false" id="M_dsbdox_c" metaid="M_dsbdox_c"
-      name="Fused thiol:disulfide interchange protein (oxidized)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dsbdox_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dsbdox" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM97001" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15450" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C7H12N2O3" hasOnlySubstanceUnits="false" id="M_progly_e" metaid="M_progly_e"
-      name="L-Prolinylglycine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_progly_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/progly" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2182" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61695" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61696" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:73594" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM7481" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15551" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C17H27N2O11PRS" hasOnlySubstanceUnits="false" id="M_ogmeACP_c" metaid="M_ogmeACP_c"
-      name="3-Oxo-glutaryl-[acyl-carrier protein] methyl ester">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ogmeACP_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ogmeACP" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM147799" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C19H33N2O11PRS" hasOnlySubstanceUnits="false" id="M_hpmeACP_c" metaid="M_hpmeACP_c"
-      name="3-Hydroxypimeloyl-[acyl-carrier protein] methyl ester">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_hpmeACP_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/hpmeACP" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:3-hydroxypimeloyl-ACP-methyl-esters" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C20377" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM10038" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd22065" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="HSR" hasOnlySubstanceUnits="false" id="M_sufse_c" metaid="M_sufse_c"
-      name="SufSE sulfur acceptor complex">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_sufse_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/sufse" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM147309" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="1" fbc:chemicalFormula="Cs" hasOnlySubstanceUnits="false" id="M_cs1_p" metaid="M_cs1_p" name="Cesium ion">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cs1_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cs1" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C10H12N5O13P3" hasOnlySubstanceUnits="false" id="M_atp_c" metaid="M_atp_c"
-      name="ATP C10H12N5O13P3">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_atp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/atp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ATP" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-1634" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10789" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10841" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13236" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15422" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22249" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2359" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:237958" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30616" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40938" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57299" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00002" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D08646" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM3" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00002" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H10O5" hasOnlySubstanceUnits="false" id="M_rbl__L_c" metaid="M_rbl__L_c"
-      name="L-Ribulose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_rbl__L_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/rbl__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:L-RIBULOSE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13163" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16880" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21382" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6295" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00508" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM685" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00397" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C8H7N" hasOnlySubstanceUnits="false" id="M_indole_c" metaid="M_indole_c" name="Indole">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_indole_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/indole" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:INDOLE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14444" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16881" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24794" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35579" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35581" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43537" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5900" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00738" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00463" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM377" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00359" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C6H9N2O6P" hasOnlySubstanceUnits="false" id="M_eig3p_c" metaid="M_eig3p_c"
-      name="D-erythro-1-(Imidazol-4-yl)glycerol 3-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_eig3p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/eig3p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-ERYTHRO-IMIDAZOLE-GLYCEROL-P" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12888" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17805" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20923" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4270" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58278" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB12208" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C04666" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1422" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02843" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C7H14N2O4" hasOnlySubstanceUnits="false" id="M_26dap__M_c" metaid="M_26dap__M_c"
-      name="Meso-2,6-Diaminoheptanedioate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_26dap__M_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/26dap__M" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:MESO-DIAMINOPIMELATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10598" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12822" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12823" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12825" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16488" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25203" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25204" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30308" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40838" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57791" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00680" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM529" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00516" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C19H21N7O6" hasOnlySubstanceUnits="false" id="M_thf_c" metaid="M_thf_c"
-      name="5,6,7,8-Tetrahydrofolate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_thf_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/thf" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:THF" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10931" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12075" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15220" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15635" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18606" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20506" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46069" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57453" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:68437" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9482" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62806" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00101" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM79" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00087" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C10H10N2O11P" hasOnlySubstanceUnits="false" id="M_orot5p_c" metaid="M_orot5p_c"
-      name="Orotidine 5'-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_orot5p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/orot5p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:OROTIDINE-5-PHOSPHATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14699" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15842" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25723" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57538" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7788" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00218" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01103" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM519" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00810" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="1" fbc:chemicalFormula="H" hasOnlySubstanceUnits="false" id="M_h_e" metaid="M_h_e" name="H+">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_h_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/h" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PROTON" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10744" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13357" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15378" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24636" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29233" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29234" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5584" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB59597" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00080" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00067" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="1" fbc:chemicalFormula="C3H8NO" hasOnlySubstanceUnits="false" id="M_aact_c" metaid="M_aact_c"
-      name="Aminoacetone">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_aact_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/aact" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:AMINO-ACETONE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13767" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17906" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19025" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2648" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42749" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42849" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58320" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02134" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB60177" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01888" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1106" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01298" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C4H8N2O3" hasOnlySubstanceUnits="false" id="M_asn__L_e" metaid="M_asn__L_e"
-      name="L-Asparagine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_asn__L_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/asn__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ASN" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13083" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17196" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21242" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22653" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32650" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32651" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32660" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32661" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40902" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58048" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6191" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00168" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00152" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C16438" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM147" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00132" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15142" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C9H11N3O9P" hasOnlySubstanceUnits="false" id="M_5caiz_c" metaid="M_5caiz_c"
-      name="5-phosphoribosyl-5-carboxyaminoimidazole">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_5caiz_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/5caiz" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-181" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48000" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58730" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB12268" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C15667" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1409" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd11310" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd25523" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C9H13N5O4" hasOnlySubstanceUnits="false" id="M_dhnpt_c" metaid="M_dhnpt_c"
-      name="Dihydroneopterin">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dhnpt_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dhnpt" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-11770" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DIHYDRO-NEO-PTERIN" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:71175" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02275" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C04874" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C21008" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM993" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02961" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd23083" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C8H12N2O5P" hasOnlySubstanceUnits="false" id="M_pyam5p_c" metaid="M_pyam5p_c"
-      name="Pyridoxamine 5'-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pyam5p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pyam5p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PYRIDOXAMINE-5P" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14979" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14980" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18335" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26427" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45037" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58451" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8670" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01555" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00647" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM366" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00493" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C12H22O11" hasOnlySubstanceUnits="false" id="M_lcts_e" metaid="M_lcts_e"
-      name="Lactose C12H22O11">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_lcts_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/lcts" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-15971" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-15972" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10296" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10380" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10428" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14497" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17716" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22460" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22760" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22846" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25005" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27755" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27968" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28577" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35463" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:36218" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43665" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:613009" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB41627" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00243" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01970" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00046" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.glycan/G10504" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM362" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00208" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01354" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03809" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C25H38N7O17P3S" hasOnlySubstanceUnits="false" id="M_btcoa_c" metaid="M_btcoa_c"
-      name="Butanoyl-CoA">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_btcoa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/btcoa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:BUTYRYL-COA" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13926" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15517" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22953" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22973" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:3235" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57371" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01088" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00136" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07050292" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM233" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00120" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C29H50N3O18P2" hasOnlySubstanceUnits="false" id="M_u3hga_c" metaid="M_u3hga_c"
-      name="UDP-3-O-(3-hydroxytetradecanoyl)-D-glucosamine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_u3hga_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/u3hga" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:UDP-OHMYR-GLUCOSAMINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22095" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27392" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58510" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:71573" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:71619" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9807" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06022" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2036" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03584" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C35H58N7O17P3S" hasOnlySubstanceUnits="false" id="M_tdcoa_c" metaid="M_tdcoa_c"
-      name="Tetradecanoyl-CoA (n-C14:0CoA)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_tdcoa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/tdcoa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TETRADECANOYL-COA" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14637" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15218" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15532" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26898" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:52969" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57385" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9475" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01521" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06517" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C02593" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07050008" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07050352" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07050373" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM224" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01695" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-1" fbc:chemicalFormula="C10H19O2" hasOnlySubstanceUnits="false" id="M_dca_e" metaid="M_dca_e"
-      name="Decanoate (n-C10:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dca_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dca" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM162295" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C12H21O14P" hasOnlySubstanceUnits="false" id="M_malt6p_c" metaid="M_malt6p_c"
-      name="Maltose 6'-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_malt6p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/malt6p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-1244" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-15982" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:111006" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14569" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15703" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25142" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57478" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6669" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6670" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:91177" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C02995" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.glycan/G10519" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2394" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01919" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H11NO2S" hasOnlySubstanceUnits="false" id="M_met__L_p" metaid="M_met__L_p"
-      name="L-Methionine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_met__L_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/met__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:MET" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13141" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14590" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16643" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16811" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21360" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25229" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32631" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32632" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32644" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32646" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43990" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57844" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6271" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:64558" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6829" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00696" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB33951" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00073" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01733" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00019" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D04983" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D04984" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM61" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00060" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd30746" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C3H7NO3" hasOnlySubstanceUnits="false" id="M_ser__L_p" metaid="M_ser__L_p"
-      name="L-Serine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ser__L_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ser__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:SER" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:Serines" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13167" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15081" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17115" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17822" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21387" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26648" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32836" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32837" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32845" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32846" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:33384" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35243" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45440" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45451" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45590" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45597" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45677" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6301" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9116" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00187" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00589" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62263" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00065" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00716" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00016" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01100045" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM53" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00054" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd28171" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd30743" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C8H15O2" hasOnlySubstanceUnits="false" id="M_octa_p" metaid="M_octa_p"
-      name="Octanoate (n-C8:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_octa_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/octa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-195" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25646" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25648" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28837" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:3373" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44501" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00482" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62511" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06423" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D05220" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01010008" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM750" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03846" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C16H28N2O11" hasOnlySubstanceUnits="false" id="M_chtbs_e" metaid="M_chtbs_e"
-      name="N,N'-diacetylchitobiose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_chtbs_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/chtbs" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CHITOBIOSE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28681" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:3597" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:701011" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62702" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01674" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.glycan/G10336" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1680" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01157" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="1" fbc:chemicalFormula="C8H12NO2" hasOnlySubstanceUnits="false" id="M_dopa_e" metaid="M_dopa_e" name="Dopamine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dopa_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dopa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DOPAMINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11695" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11930" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14203" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1764" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18243" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23886" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43686" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:59905" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00073" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C03758" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D07870" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM205" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02357" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-1" fbc:chemicalFormula="C2H5O4S" hasOnlySubstanceUnits="false" id="M_isetac_e" metaid="M_isetac_e"
-      name="Isethionic acid">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_isetac_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/isetac" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-3745" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1157" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61904" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03903" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05123" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1630" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03048" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C35H52N6O13Fe" hasOnlySubstanceUnits="false" id="M_cpgn_c" metaid="M_cpgn_c"
-      name="Coprogen">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cpgn_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cpgn" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:83101" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM114191" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15437" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C15H27N2O8PRS" hasOnlySubstanceUnits="false" id="M_butACP_c" metaid="M_butACP_c"
-      name="Butyryl-ACP (n-C4:0ACP)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_butACP_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/butACP" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM90458" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C19H35O7P1" hasOnlySubstanceUnits="false" id="M_1hdec9eg3p_c" metaid="M_1hdec9eg3p_c"
-      name="1-hexadec-9-enoyl-sn-glycerol 3-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_1hdec9eg3p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/1hdec9eg3p" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM91047" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15326" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C41H78N1O8P1" hasOnlySubstanceUnits="false" id="M_pe181_c" metaid="M_pe181_c"
-      name="Phosphatidylethanolamine (dioctadec-11-enoyl, n-C18:1)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pe181_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pe181" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2150" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C37H74N1O8P1" hasOnlySubstanceUnits="false" id="M_pe160_p" metaid="M_pe160_p"
-      name="Phosphatidylethanolamine (dihexadecanoyl, n-C16:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pe160_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pe160" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-12819" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:73005" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:73127" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB05317" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB08923" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMGP02010037" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM32178" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15531" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd23597" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd29054" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C22H44O9P1" hasOnlySubstanceUnits="false" id="M_2agpg160_c" metaid="M_2agpg160_c"
-      name="2-Acyl-sn-glycero-3-phosphoglycerol (n-C16:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2agpg160_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2agpg160" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-8363" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM34740" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd25200" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C6H11O2" hasOnlySubstanceUnits="false" id="M_hxa_c" metaid="M_hxa_c"
-      name="Hexanoate (n-C6:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_hxa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/hxa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:HEXANOATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14398" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17120" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24569" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24571" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30776" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40213" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5702" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00535" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB61883" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01585" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01010006" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1653" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01113" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C3H6O2" hasOnlySubstanceUnits="false" id="M_3hppnl_c" metaid="M_3hppnl_c"
-      name="3-Hydroxypropanal">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_3hppnl_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/3hppnl" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:HYDROXYPROPANAL" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11835" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1552" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17871" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20078" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03453" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00969" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1526" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00714" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C3H7O6P" hasOnlySubstanceUnits="false" id="M_glyc2p_c" metaid="M_glyc2p_c"
-      name="Glycerol 2-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_glyc2p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/glyc2p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-536" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14337" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17270" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26704" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42620" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5451" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58083" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C02979" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2527" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01908" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C10H10N5O8PS2W" hasOnlySubstanceUnits="false" id="M_wco_c" metaid="M_wco_c"
-      name="Tungsten binding cofactor">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_wco_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/wco" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM148528" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C9H13N5O4" hasOnlySubstanceUnits="false" id="M_dhmpt_c" metaid="M_dhmpt_c"
-      name="Dihydromonapterin">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dhmpt_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dhmpt" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM148224" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C23H27N3O7" hasOnlySubstanceUnits="false" id="M_mincyc_p" metaid="M_mincyc_p"
-      name="Minocycline">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_mincyc_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/mincyc" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-19259" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44053" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:50694" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6939" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:71337" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:77906" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB15152" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C07225" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D05045" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMPK07000002" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM128081" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd04461" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C6H11O8S" hasOnlySubstanceUnits="false" id="M_sq_c" metaid="M_sq_c"
-      name="Sulphoquinovose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_sq_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/sq" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C6H10O11PS" hasOnlySubstanceUnits="false" id="M_sfp_c" metaid="M_sfp_c"
-      name="6-deoxy-6-sulphofructose 1-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_sfp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/sfp" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-1" fbc:chemicalFormula="C6H11O8S" hasOnlySubstanceUnits="false" id="M_sq_e" metaid="M_sq_e"
-      name="Sulphoquinovose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_sq_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/sq" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C9H8N2O2" hasOnlySubstanceUnits="false" id="M_5phdt_c" metaid="M_5phdt_c"
-      name="Phenylhydantoin">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_5phdt_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/5phdt" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C16H23N5O15P2" hasOnlySubstanceUnits="false" id="M_adpglc_c" metaid="M_adpglc_c"
-      name="ADPglucose C16H23N5O15P2">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_adpglc_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/adpglc" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ADP-D-GLUCOSE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13230" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15751" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20846" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2349" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40615" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57498" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06557" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB12186" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62621" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00498" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.glycan/G11109" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM561" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00387" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C9H11N2O11P2" hasOnlySubstanceUnits="false" id="M_dudp_c" metaid="M_dudp_c"
-      name="DUDP C9H11N2O11P2">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dudp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dudp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DUDP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10531" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19262" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28850" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:60471" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01000" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01346" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM572" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00978" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C9H15NO8P" hasOnlySubstanceUnits="false" id="M_4ppan_c" metaid="M_4ppan_c"
-      name="D-4'-Phosphopantothenate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_4ppan_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/4ppan" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:4-P-PANTOTHENATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10986" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12886" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15905" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18702" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20891" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4082" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01016" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62700" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C03492" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM415" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02201" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C7H5O4" hasOnlySubstanceUnits="false" id="M_23dhb_c" metaid="M_23dhb_c"
-      name="2,3-Dihydroxybenzoate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_23dhb_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/23dhb" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:2-3-DIHYDROXYBENZOATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11427" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18026" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19319" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19320" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:36654" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41901" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:885" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00196" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM455" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00168" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C5H10O9P2" hasOnlySubstanceUnits="false" id="M_2mecdp_c" metaid="M_2mecdp_c"
-      name="2-C-methyl-D-erythritol 2,4-cyclodiphosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2mecdp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2mecdp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:2C-METH-D-ERYTHRITOL-CYCLODIPHOSPHATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1029" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11481" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11482" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18425" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58483" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C11453" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1168" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd08301" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C9H13N3O4" hasOnlySubstanceUnits="false" id="M_dcyt_e" metaid="M_dcyt_e"
-      name="Deoxycytidine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dcyt_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dcyt" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DEOXYCYTIDINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15698" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19240" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41417" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41430" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41434" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41806" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4407" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00014" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00881" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM704" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00654" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-1" fbc:chemicalFormula="C5H3N2O4" hasOnlySubstanceUnits="false" id="M_orot_e" metaid="M_orot_e"
-      name="Orotate C5H3N2O4">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_orot_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/orot" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:OROTATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14698" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16742" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25719" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25720" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30839" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44781" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7787" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00226" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00295" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00055" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM235" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00247" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C68H95CoN21O21P2" hasOnlySubstanceUnits="false" id="M_agdpcbi_c" metaid="M_agdpcbi_c"
-      name="Adenosine-GDP-cobinamide">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_agdpcbi_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/agdpcbi" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ADENOSYLCOBINAMIDE-GDP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2479" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:60487" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB12185" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06510" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1105" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03920" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C31H51N3O19P2" hasOnlySubstanceUnits="false" id="M_u3aga_c" metaid="M_u3aga_c"
-      name="UDP-3-O-(3-hydroxytetradecanoyl)-N-acetylglucosamine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_u3aga_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/u3aga" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:UDP-OHMYR-ACETYLGLUCOSAMINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61494" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61537" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C04738" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2157" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02886" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="1" fbc:chemicalFormula="C12H17N4OS" hasOnlySubstanceUnits="false" id="M_thm_c" metaid="M_thm_c" name="Thiamin">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_thm_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/thm" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:THIAMINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15227" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18385" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26941" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46393" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49107" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9530" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00235" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00378" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM322" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00305" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="1" fbc:chemicalFormula="C25H46FeN6O8" hasOnlySubstanceUnits="false" id="M_feoxam_c" metaid="M_feoxam_c"
-      name="Generic ferrioxamine-Fe-III">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_feoxam_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/feoxam" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-3764" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2124" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4356" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:84700" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB14884" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06940" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D03670" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA08020169" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA08020175" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM94790" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd04273" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd23947" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H10N2O3" hasOnlySubstanceUnits="false" id="M_gln__L_p" metaid="M_gln__L_p"
-      name="L-Glutamine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_gln__L_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/gln__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLN" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13110" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18050" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21308" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24316" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28300" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32665" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32666" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32678" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32679" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42812" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42814" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42899" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42943" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5432" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58359" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6227" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00641" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00064" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00303" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00015" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM37" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00053" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00253" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C3H8O3" hasOnlySubstanceUnits="false" id="M_glyc_p" metaid="M_glyc_p" name="Glycerol">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_glyc_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/glyc" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLYCEROL" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:131422" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14334" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17754" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24351" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42998" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5448" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00131" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00116" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00028" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM89612" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00100" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C4H9NO3" hasOnlySubstanceUnits="false" id="M_thr__L_p" metaid="M_thr__L_p"
-      name="L-Threonine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_thr__L_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/thr__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:THR" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13175" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16857" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21403" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26986" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32820" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32822" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32832" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32833" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42083" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45843" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45983" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57926" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6308" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00167" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00188" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00041" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM142" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00161" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C14H27O2" hasOnlySubstanceUnits="false" id="M_ttdca_p" metaid="M_ttdca_p"
-      name="Tetradecanoate (n-C14:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ttdca_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ttdca" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM162239" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C8H15NO6" hasOnlySubstanceUnits="false" id="M_acgam_c" metaid="M_acgam_c"
-      name="N-Acetyl-D-glucosamine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_acgam_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/acgam" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:N-acetyl-D-glucosamine" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12455" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12563" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17411" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21517" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:506227" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58134" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7123" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00215" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00533" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB14288" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62641" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00140" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM143" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00122" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd27608" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H11NO3S" hasOnlySubstanceUnits="false" id="M_metsox_S__L_p" metaid="M_metsox_S__L_p"
-      name="L-Methionine Sulfoxide">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_metsox_S__L_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/metsox_S__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-8989" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-8990" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:L-Methionine-sulfoxides" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13142" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17016" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21361" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49031" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49032" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58772" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58773" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6272" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C02989" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C15998" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C15999" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2246" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01914" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd14720" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd14721" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15497" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15498" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd29319" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C8H8O" hasOnlySubstanceUnits="false" id="M_pacald_p" metaid="M_pacald_p"
-      name="Phenylacetaldehyde">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pacald_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pacald" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PHENYLACETALDEHYDE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14778" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16424" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25972" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43163" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8084" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06236" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00601" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM473" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00464" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-15" fbc:chemicalFormula="C272H447N14O160P4" hasOnlySubstanceUnits="false" id="M_eca4colipa_p"
-      metaid="M_eca4colipa_p" name="(enterobacterial common antigen)x4 core oligosaccharide lipid A">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_eca4colipa_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/eca4colipa" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM91786" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15457" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-3" fbc:chemicalFormula="C15H19N2O18P2" hasOnlySubstanceUnits="false" id="M_udpglcur_e" metaid="M_udpglcur_e"
-      name="UDP-D-glucuronate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_udpglcur_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/udpglcur" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:UDP-GLUCURONATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13489" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13506" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17200" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22104" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46309" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58052" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9846" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00167" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.glycan/G10612" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM87" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00144" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-4" fbc:chemicalFormula="C68H102N12O37" hasOnlySubstanceUnits="false" id="M_murein3px3p_p"
-      metaid="M_murein3px3p_p" name="Two disacharide linked murein units, tripeptide crosslinked tripeptide (A2pm-&gt;A2pm) (middle of chain)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_murein3px3p_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/murein3px3p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2277" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM88342" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15502" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C27H49N2O9PRS" hasOnlySubstanceUnits="false" id="M_3hcpalm9eACP_c"
-      metaid="M_3hcpalm9eACP_c" name="(R)-3-hydroxy-cis-palm-9-eoyl-[acyl-carrier protein]">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_3hcpalm9eACP_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/3hcpalm9eACP" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM6556" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15369" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C27H47N2O9PRS" hasOnlySubstanceUnits="false" id="M_3ocpalm9eACP_c"
-      metaid="M_3ocpalm9eACP_c" name="3-oxo-cis-palm-9-eoyl-[acyl-carrier protein]">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_3ocpalm9eACP_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/3ocpalm9eACP" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM6839" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15375" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C15H30O7P1" hasOnlySubstanceUnits="false" id="M_2ddecg3p_c" metaid="M_2ddecg3p_c"
-      name="2-dodecanoyl-sn-glycerol 3-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2ddecg3p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2ddecg3p" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM5461" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15350" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C21H42NO7P1" hasOnlySubstanceUnits="false" id="M_1agpe161_p" metaid="M_1agpe161_p"
-      name="1-Acyl-sn-glycero-3-phosphoethanolamine (n-C16:1)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_1agpe161_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/1agpe161" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM6601" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C3H5O2" hasOnlySubstanceUnits="false" id="M_ppa_p" metaid="M_ppa_p"
-      name="Propionate (n-C3:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ppa_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ppa" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM162260" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C3H3O3" hasOnlySubstanceUnits="false" id="M_msa_c" metaid="M_msa_c"
-      name="Malonate semialdehyde">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_msa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/msa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-1135" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:MALONATE-S-ALD" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11877" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14564" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1651" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17960" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20180" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29480" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:33190" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00222" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C12069" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM244" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00191" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd08857" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="O3Se" hasOnlySubstanceUnits="false" id="M_slnt_c" metaid="M_slnt_c" name="Selenite">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_slnt_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/slnt" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:SELENITE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15077" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18212" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26642" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29924" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9090" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB11119" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05684" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D05814" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D10530" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1157" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03387" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-1" fbc:chemicalFormula="C7H11O7" hasOnlySubstanceUnits="false" id="M_metglcur_e" metaid="M_metglcur_e"
-      name="1-O-methyl-Beta-D-glucuronate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_metglcur_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/metglcur" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C10H13N5O4" hasOnlySubstanceUnits="false" id="M_dgsn_c" metaid="M_dgsn_c"
-      name="Deoxyguanosine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dgsn_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dgsn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DEOXYGUANOSINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14116" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17172" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19244" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23624" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42667" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42867" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42874" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42987" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4412" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00085" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00330" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM647" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00277" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C10H13N2O14P3" hasOnlySubstanceUnits="false" id="M_dttp_c" metaid="M_dttp_c"
-      name="DTTP C10H13N2O14P3">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dttp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dttp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TTP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10530" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14093" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18077" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27000" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:37568" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46175" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58370" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00459" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM394" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00357" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C4H7O2" hasOnlySubstanceUnits="false" id="M_but_c" metaid="M_but_c"
-      name="Butyrate (n-C4:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_but_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/but" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM162281" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H7NO3R" hasOnlySubstanceUnits="false" id="M_glutrna_c" metaid="M_glutrna_c"
-      name="L-Glutamyl-tRNA(Glu)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_glutrna_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/glutrna" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13114" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29157" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6232" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C02987" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM89752" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd12227" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C10H13N5O4" hasOnlySubstanceUnits="false" id="M_adn_e" metaid="M_adn_e" name="Adenosine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_adn_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/adn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ADENOSINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13734" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16335" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22237" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2472" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40558" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40825" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40906" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40911" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00050" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB04401" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB04402" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB04421" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00212" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00045" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM212" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00182" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C40H65O7P2" hasOnlySubstanceUnits="false" id="M_octdp_c" metaid="M_octdp_c"
-      name="All-trans-Octaprenyl diphosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_octdp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/octdp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:OCTAPRENYL-DIPHOSPHATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10194" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12781" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16275" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22346" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44585" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:53045" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57711" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01094" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C04146" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMPR01070226" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM811" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02557" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd30761" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C9H7O2" hasOnlySubstanceUnits="false" id="M_cinnm_c" metaid="M_cinnm_c"
-      name="Trans-Cinnamate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cinnm_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cinnm" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-674" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10720" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10955" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12871" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12879" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15669" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23248" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23250" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27072" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27073" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27386" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35697" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:3710" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45845" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00567" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00930" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00423" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C10438" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM438" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00333" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd07326" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C12H15O10P" hasOnlySubstanceUnits="false" id="M_arbt6p_c" metaid="M_arbt6p_c"
-      name="Arbutin 6-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_arbt6p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/arbt6p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-1162" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2807" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:60929" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06187" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2806" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03697" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C14H27O2" hasOnlySubstanceUnits="false" id="M_ttdca_c" metaid="M_ttdca_c"
-      name="Tetradecanoate (n-C14:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ttdca_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ttdca" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM162239" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="1" fbc:chemicalFormula="C3H10N" hasOnlySubstanceUnits="false" id="M_tma_p" metaid="M_tma_p"
-      name="Trimethylamine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_tma_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/tma" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRIMETHYLAMINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15261" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18139" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27125" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27127" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58389" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9732" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00906" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00565" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM352" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00441" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-3" fbc:chemicalFormula="C12H10FeO14" hasOnlySubstanceUnits="false" id="M_fe3dcit_e" metaid="M_fe3dcit_e"
-      name="Fe(III)dicitrate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_fe3dcit_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/fe3dcit" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06229" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM146388" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03725" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C9H18O6N3" hasOnlySubstanceUnits="false" id="M_fe3hox_un_c" metaid="M_fe3hox_un_c"
-      name="Fe(III)hydoxamate, unloaded">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_fe3hox_un_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/fe3hox_un" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2175" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM90823" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15461" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-2" fbc:chemicalFormula="C10H12N5O6P" hasOnlySubstanceUnits="false" id="M_damp_e" metaid="M_damp_e"
-      name="DAMP C10H12N5O6P">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_damp_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/damp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DAMP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10490" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14068" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17713" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19236" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40419" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40499" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40505" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40544" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40607" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40614" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41815" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41864" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41870" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58245" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00360" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM432" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00294" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="C191H310N4O107P2" hasOnlySubstanceUnits="false" id="M_o16a4und_p" metaid="M_o16a4und_p"
-      name="(O16 antigen)x4 undecaprenyl diphosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_o16a4und_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/o16a4und" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM31523" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15519" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="N2O" hasOnlySubstanceUnits="false" id="M_n2o_c" metaid="M_n2o_c" name="Nitrous oxide">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_n2o_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/n2o" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:NITROUS-OXIDE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14661" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17045" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25568" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44250" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7598" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB35807" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00887" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00102" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM579" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00659" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="2" fbc:chemicalFormula="Hg" hasOnlySubstanceUnits="false" id="M_hg2_e" metaid="M_hg2_e"
-      name="Mercury  charged 2  Hg">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_hg2_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/hg2" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13370" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16793" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25199" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25200" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49640" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5714" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03625" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00703" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C13377" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C18670" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D01905" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1562" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00531" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C19H35N2O9PRS" hasOnlySubstanceUnits="false" id="M_3hoctACP_c" metaid="M_3hoctACP_c"
-      name="(R)-3-Hydroxyoctanoyl-[acyl-carrier protein]">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_3hoctACP_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/3hoctACP" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:3-Hydroxy-octanoyl-ACPs" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C04620" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM10019" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd11483" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C29H53N2O8PRS" hasOnlySubstanceUnits="false" id="M_toctd2eACP_c" metaid="M_toctd2eACP_c"
-      name="Trans-octadec-2-enoyl-[acyl-carrier protein]">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_toctd2eACP_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/toctd2eACP" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:Octadec-2-enoyl-ACPs" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:80388" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C16221" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2573" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd14940" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15572" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="X" hasOnlySubstanceUnits="false" id="M_dsbcox_p" metaid="M_dsbcox_p"
-      name="Protein disulfide isomerase II (oxidized)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dsbcox_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dsbcox" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM97006" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15448" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="C73H140O17P2" hasOnlySubstanceUnits="false" id="M_clpn160_p" metaid="M_clpn160_p"
-      name="Cardiolipin (tetrahexadecanoyl, n-C16:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_clpn160_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/clpn160" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-12824" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:104586" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMGP12010007" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM45654" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15428" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd23601" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="C81H148O17P2" hasOnlySubstanceUnits="false" id="M_clpn181_p" metaid="M_clpn181_p"
-      name="Cardiolipin (tetraoctadec-11-enoyl, n-C18:1)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_clpn181_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/clpn181" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-19675" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:105685" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM4503" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C12H16O7" hasOnlySubstanceUnits="false" id="M_arbt_p" metaid="M_arbt_p"
-      name="Arbutin C12H16O7">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_arbt_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/arbt" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:HYDROQUINONE-O-BETA-D-GLUCOPYRANOSIDE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14417" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18305" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2806" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB29943" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06186" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2683" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03696" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C14H26O5P" hasOnlySubstanceUnits="false" id="M_ttdceap_c" metaid="M_ttdceap_c"
-      name="Tetradecanoyl-phosphate (n-C14:1)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ttdceap_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ttdceap" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM147614" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C10H13N5O8P" hasOnlySubstanceUnits="false" id="M_cpmp_c" metaid="M_cpmp_c"
-      name="Cyclic pyranopterin monophosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cpmp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cpmp" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:60210" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB59639" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C18239" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM12735" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd19505" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C27H29NO11" hasOnlySubstanceUnits="false" id="M_doxrbcn_e" metaid="M_doxrbcn_e"
-      name="Doxorubicin">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_doxrbcn_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/doxrbcn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-13973" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22270" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2496" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28748" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42031" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:64816" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB15132" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01661" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D03899" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMPK13050001" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM37015" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01151" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C5H9O6" hasOnlySubstanceUnits="false" id="M_dxylnt_p" metaid="M_dxylnt_p"
-      name="D-Xylonate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dxylnt_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dxylnt" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-5" fbc:chemicalFormula="C29H37N7P3S1O18" hasOnlySubstanceUnits="false" id="M_2hptcoa_c" metaid="M_2hptcoa_c"
-      name="2-hydroxycyclohepta-1,4,6-triene-1-carboxyl-CoA">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2hptcoa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2hptcoa" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C5H9O8P" hasOnlySubstanceUnits="false" id="M_ru5p__D_c" metaid="M_ru5p__D_c"
-      name="D-Ribulose 5-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ru5p__D_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ru5p__D" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RIBULOSE-5P" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13018" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13040" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17363" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21088" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26572" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:37455" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40192" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4243" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58121" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00618" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02033" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02694" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00199" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM145" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00171" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C5H9O4" hasOnlySubstanceUnits="false" id="M_23dhmb_c" metaid="M_23dhmb_c"
-      name="(R)-2,3-Dihydroxy-3-methylbutanoate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_23dhmb_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/23dhmb" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-13357" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10966" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15684" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18645" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:305" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49072" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB12141" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C04272" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01050453" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM114097" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd19030" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C6H9O7" hasOnlySubstanceUnits="false" id="M_galur_c" metaid="M_galur_c"
-      name="D-Galacturonate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_galur_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/galur" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-Galactopyranuronate" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18024" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20976" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20978" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4153" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:75525" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00333" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM48464" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00280" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H10O5" hasOnlySubstanceUnits="false" id="M_arab__L_e" metaid="M_arab__L_e"
-      name="L-Arabinose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_arab__L_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/arab__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-15699" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:L-ARABINOSE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6182" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C11476" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM91126" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd19109" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd27351" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C3H6O2" hasOnlySubstanceUnits="false" id="M_lald__L_c" metaid="M_lald__L_c"
-      name="L-Lactaldehyde">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_lald__L_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/lald__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:LACTALD" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11015" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11064" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13130" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18041" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18419" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18782" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24994" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:421" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6349" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03052" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00424" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05999" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2387" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00334" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03571" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd27393" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C7H9N5O2" hasOnlySubstanceUnits="false" id="M_6hmhpt_c" metaid="M_6hmhpt_c"
-      name="6-hydroxymethyl dihydropterin">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_6hmhpt_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/6hmhpt" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:AMINO-OH-HYDROXYMETHYL-DIHYDROPTERIDINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1003" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11511" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17083" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19456" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44841" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01300" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM937" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00954" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd29670" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C24H36N7O17P3S" hasOnlySubstanceUnits="false" id="M_ppcoa_c" metaid="M_ppcoa_c"
-      name="Propanoyl-CoA">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ppcoa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ppcoa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PROPIONYL-COA" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14904" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14907" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15539" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26295" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57392" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8479" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01275" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00100" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07050364" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM86" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00086" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd12196" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="1" fbc:chemicalFormula="C58H84CoN16O11" hasOnlySubstanceUnits="false" id="M_adocbi_c" metaid="M_adocbi_c"
-      name="Adenosyl cobinamide">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_adocbi_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/adocbi" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ADENOSYLCOBINAMIDE" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06903" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06964" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06508" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM90790" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03918" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C4H5O3" hasOnlySubstanceUnits="false" id="M_acac_c" metaid="M_acac_c"
-      name="Acetoacetate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_acac_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/acac" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:3-KETOBUTYRATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:131367" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13705" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15344" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22172" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2391" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:38871" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40507" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00060" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00164" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01030978" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01060003" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM154" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00142" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C8H14NO9P" hasOnlySubstanceUnits="false" id="M_acmanap_c" metaid="M_acmanap_c"
-      name="N-Acetyl-D-mannosamine 6-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_acmanap_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/acmanap" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:N-ACETYL-D-MANNOSAMINE-6P" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21539" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28273" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58557" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:62168" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7142" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01121" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C04257" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM4708" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02612" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-1" fbc:chemicalFormula="C9H9O2" hasOnlySubstanceUnits="false" id="M_pppn_e" metaid="M_pppn_e"
-      name="Phenylpropanoate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pppn_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pppn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:3-PHENYLPROPIONATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20186" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20187" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26002" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26005" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28631" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43112" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:51057" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8103" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00764" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05629" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1403" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03343" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-1" fbc:chemicalFormula="C9H7O3" hasOnlySubstanceUnits="false" id="M_3hcinnm_e" metaid="M_3hcinnm_e"
-      name="3-hydroxycinnamic acid">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_3hcinnm_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/3hcinnm" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-10797" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32357" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:47925" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:47927" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:47928" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62774" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C12621" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1799" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd09252" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C3H9NO" hasOnlySubstanceUnits="false" id="M_tmao_c" metaid="M_tmao_c"
-      name="Trimethylamine N-oxide">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_tmao_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/tmao" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRIMETHYLAMINE-N-O" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15262" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15263" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15724" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27126" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9733" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00925" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01104" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM437" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00811" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="O3S2" hasOnlySubstanceUnits="false" id="M_tsul_c" metaid="M_tsul_c" name="Thiosulfate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_tsul_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/tsul" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:S2O3" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15242" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16094" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26977" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29279" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:33539" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:33540" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:33541" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:33542" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45922" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5587" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9569" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00257" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00320" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05529" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM323" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00268" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C9H14O12P" hasOnlySubstanceUnits="false" id="M_man6pglyc_c" metaid="M_man6pglyc_c"
-      name="2(alpha-D-Mannosyl-6-phosphate)-D-glycerate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_man6pglyc_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/man6pglyc" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-1063" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:60331" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61001" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB12152" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C16699" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM3470" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15496" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd16506" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C2H2NO3" hasOnlySubstanceUnits="false" id="M_oxam_c" metaid="M_oxam_c" name="Oxamate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_oxam_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/oxam" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:OXAMATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14708" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18058" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25740" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44589" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58363" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7818" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01444" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM3329" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01027" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C3H6O3" hasOnlySubstanceUnits="false" id="M_dha_p" metaid="M_dha_p"
-      name="Dihydroxyacetone">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dha_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dha" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DIHYDROXYACETONE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14340" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16016" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24354" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:39809" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5453" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01882" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00184" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D07841" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM460" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00157" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C18H30N5O9" hasOnlySubstanceUnits="false" id="M_LalaDgluMdapDala_c"
-      metaid="M_LalaDgluMdapDala_c" name="L-alanine-D-glutamate-meso-2,6-diaminoheptanedioate-D-alanine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_LalaDgluMdapDala_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/LalaDgluMdapDala" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM59271" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15387" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-11" fbc:chemicalFormula="C176H303N2O100P4" hasOnlySubstanceUnits="false" id="M_colipa_p" metaid="M_colipa_p"
-      name="Core oligosaccharide lipid A">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_colipa_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/colipa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2271" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM47647" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15432" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-11" fbc:chemicalFormula="C176H303N2O100P4" hasOnlySubstanceUnits="false" id="M_colipa_e" metaid="M_colipa_e"
-      name="Core oligosaccharide lipid A">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_colipa_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/colipa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2271" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM47647" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15432" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="C3H7O6P" hasOnlySubstanceUnits="false" id="M_glyc2p_p" metaid="M_glyc2p_p"
-      name="Glycerol 2-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_glyc2p_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/glyc2p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-536" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14337" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17270" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26704" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42620" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5451" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58083" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C02979" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2527" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01908" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C33H62N1O8P1" hasOnlySubstanceUnits="false" id="M_pe141_p" metaid="M_pe141_p"
-      name="Phosphatidylethanolamine (ditetradec-7-enoyl, n-C14:1)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pe141_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pe141" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM3693" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C41H78N1O8P1" hasOnlySubstanceUnits="false" id="M_pe181_p" metaid="M_pe181_p"
-      name="Phosphatidylethanolamine (dioctadec-11-enoyl, n-C18:1)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pe181_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pe181" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2150" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C31H60O5" hasOnlySubstanceUnits="false" id="M_12dgr140_p" metaid="M_12dgr140_p"
-      name="1,2-Diacyl-sn-glycerol (ditetradecanoyl, n-C14:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_12dgr140_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/12dgr140" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM146479" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C19H38O7P1" hasOnlySubstanceUnits="false" id="M_2hdecg3p_p" metaid="M_2hdecg3p_p"
-      name="2-hexadecanoyl-sn-glycerol 3-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2hdecg3p_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2hdecg3p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-17276" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB07849" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMGP10050042" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM5465" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15355" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-5" fbc:chemicalFormula="C27H37N7O20P3S" hasOnlySubstanceUnits="false" id="M_oxadpcoa_c" metaid="M_oxadpcoa_c"
-      name="3-Oxoadipyl-CoA">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_oxadpcoa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/oxadpcoa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:3-KETO-ADIPYL-COA" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11872" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15490" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1632" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20164" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57348" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB60378" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C02232" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07050237" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1264" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01507" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C20H22N10O12P2S2Cu" hasOnlySubstanceUnits="false" id="M_mptamp_c" metaid="M_mptamp_c"
-      name="Adenylated molybdopterin">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_mptamp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/mptamp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-8122" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:62727" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:62728" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB59628" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C19848" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM3054" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd21090" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="1" fbc:chemicalFormula="Cs" hasOnlySubstanceUnits="false" id="M_cs1_e" metaid="M_cs1_e" name="Cesium ion">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cs1_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cs1" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C6H12O6" hasOnlySubstanceUnits="false" id="M_glc__D_c" metaid="M_glc__D_c"
-      name="D-Glucose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_glc__D_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/glc__D" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:Glucopyranose" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12965" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17634" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20999" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4167" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00122" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06564" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00031" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00009" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM41" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00027" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd26821" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C4H7O7P" hasOnlySubstanceUnits="false" id="M_e4p_c" metaid="M_e4p_c"
-      name="D-Erythrose 4-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_e4p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/e4p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ERYTHROSE-4P" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12921" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16897" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20927" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4114" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42349" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48153" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01321" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00279" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM258" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00236" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C6H11O9P" hasOnlySubstanceUnits="false" id="M_man1p_c" metaid="M_man1p_c"
-      name="D-Mannose 1-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_man1p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/man1p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:MANNOSE-1P" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10261" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12327" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18205" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21058" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22404" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35374" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4210" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43854" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58409" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01436" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06330" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00636" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM721" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00485" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C11H12N2O2" hasOnlySubstanceUnits="false" id="M_trp__L_c" metaid="M_trp__L_c"
-      name="L-Tryptophan">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_trp__L_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/trp__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13178" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16828" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:184633" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21407" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27163" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27897" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32702" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32704" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32727" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32728" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45988" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46086" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46125" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46225" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57912" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6310" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:64554" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9769" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00929" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB30396" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00078" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00806" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00020" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM94" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00065" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd19007" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H9NO4" hasOnlySubstanceUnits="false" id="M_acser_c" metaid="M_acser_c"
-      name="O-Acetyl-L-serine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_acser_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/acser" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ACETYLSERINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12685" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12710" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12724" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17981" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21938" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44568" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58340" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7668" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03011" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00979" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM418" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00722" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="1" fbc:chemicalFormula="C6H15N2O2" hasOnlySubstanceUnits="false" id="M_lys__L_c" metaid="M_lys__L_c"
-      name="L-Lysine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_lys__L_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/lys__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:LYS" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13135" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:133538" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18019" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21351" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25094" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32550" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32551" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32552" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32563" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32564" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32565" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43950" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6264" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62809" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00047" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C16440" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D02304" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM78" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00039" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd19182" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C11H10O6" hasOnlySubstanceUnits="false" id="M_2shchc_c" metaid="M_2shchc_c"
-      name="2-Succinyl-6-hydroxy-2,4-cyclohexadiene-1-carboxylate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2shchc_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2shchc" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:SUCCINYL-OH-CYCLOHEXADIENE-COOH" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1277" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57272" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM162721" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd28162" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C5H9O7P" hasOnlySubstanceUnits="false" id="M_dxyl5p_c" metaid="M_dxyl5p_c"
-      name="1-deoxy-D-xylulose 5-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dxyl5p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dxyl5p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DEOXYXYLULOSE-5P" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11254" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16493" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57792" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:622" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01213" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C11437" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM622" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd08289" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C6H12O6" hasOnlySubstanceUnits="false" id="M_man_e" metaid="M_man_e" name="D-Mannose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_man_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/man" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-mannopyranose" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12999" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14575" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16024" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21057" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:33930" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:37684" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4208" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00169" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00159" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM182" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00138" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd27437" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C8H15NO6" hasOnlySubstanceUnits="false" id="M_acmana_c" metaid="M_acmana_c"
-      name="N-Acetyl-D-mannosamine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_acmana_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/acmana" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:N-acetyl-D-mannosamine" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12459" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12573" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17122" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21538" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58019" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:63153" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7141" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62724" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00645" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2403" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00492" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C6H12O5" hasOnlySubstanceUnits="false" id="M_fcl__L_c" metaid="M_fcl__L_c"
-      name="L-fuculose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_fcl__L_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/fcl__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:L-FUCULOSE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13103" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17617" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21295" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58208" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6219" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB60267" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01721" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1748" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01186" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="H2" hasOnlySubstanceUnits="false" id="M_h2_e" metaid="M_h2_e" name="Hydrogen">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_h2_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/h2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:HYDROGEN-MOLECULE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13350" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18276" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25363" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29294" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29298" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29299" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5785" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01362" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00282" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM195" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd11640" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-1" fbc:chemicalFormula="C11H14N2O8P" hasOnlySubstanceUnits="false" id="M_nmn_e" metaid="M_nmn_e"
-      name="NMN C11H14N2O8P">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_nmn_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/nmn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:NICOTINAMIDE_NUCLEOTIDE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10433" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12397" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13409" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14646" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14647" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14648" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14649" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16171" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18201" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22850" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25522" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7557" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB59645" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00455" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM355" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00355" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-2" fbc:chemicalFormula="C6H11O9P" hasOnlySubstanceUnits="false" id="M_man6p_e" metaid="M_man6p_e"
-      name="D-Mannose 6-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_man6p_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/man6p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-15979" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-15980" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:Mannose-6-phosphate" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13000" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17369" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4211" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48042" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48066" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58735" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00275" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM427" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00235" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C4H5N3O" hasOnlySubstanceUnits="false" id="M_csn_p" metaid="M_csn_p" name="Cytosine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_csn_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/csn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CYTOSINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14066" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16040" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23531" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4072" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41732" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00630" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00380" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM761" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00307" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C9H13N3O5" hasOnlySubstanceUnits="false" id="M_cytd_p" metaid="M_cytd_p" name="Cytidine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cytd_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cytd" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CYTIDINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14063" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17562" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23515" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4053" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41649" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41686" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41704" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41709" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00089" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00475" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D07769" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM338" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00367" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C6H12O5" hasOnlySubstanceUnits="false" id="M_fuc__L_p" metaid="M_fuc__L_p"
-      name="L-Fucose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_fuc__L_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/fuc__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-15619" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:L-fucoses" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48204" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62489" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM40586" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="C4H4O5" hasOnlySubstanceUnits="false" id="M_mal__L_p" metaid="M_mal__L_p"
-      name="L-Malate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_mal__L_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/mal__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:MAL" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11066" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13140" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15589" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18784" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18785" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30797" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:423" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00156" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00149" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM98" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00130" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C3H9NO" hasOnlySubstanceUnits="false" id="M_tmao_p" metaid="M_tmao_p"
-      name="Trimethylamine N-oxide">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_tmao_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/tmao" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRIMETHYLAMINE-N-O" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15262" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15263" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15724" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27126" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9733" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00925" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01104" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM437" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00811" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C6H11O2" hasOnlySubstanceUnits="false" id="M_hxa_p" metaid="M_hxa_p"
-      name="Hexanoate (n-C6:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_hxa_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/hxa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:HEXANOATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14398" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17120" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24569" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24571" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30776" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40213" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5702" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00535" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB61883" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01585" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01010006" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1653" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01113" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="MoO4" hasOnlySubstanceUnits="false" id="M_mobd_p" metaid="M_mobd_p" name="Molybdate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_mobd_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/mobd" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-3" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25368" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25371" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:36263" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:36264" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6967" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB12260" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06232" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C15455" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1026" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd11574" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="C6H11O9P" hasOnlySubstanceUnits="false" id="M_g1p_p" metaid="M_g1p_p"
-      name="D-Glucose 1-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_g1p_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/g1p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-glucose-1-phosphates" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLC-1-P" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10246" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12320" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12967" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12970" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16077" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21001" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21004" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29042" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4169" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42623" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57629" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58601" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01306" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01586" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00103" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM89588" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00089" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd28817" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C34H52N6O19" hasOnlySubstanceUnits="false" id="M_anhgm3p_c" metaid="M_anhgm3p_c"
-      name="N-Acetyl-D-glucosamine(anhydrous)N-Acetylmuramyl-tripeptide">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_anhgm3p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/anhgm3p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2155" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM63489" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15397" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-11" fbc:chemicalFormula="C163H281N2O89P4" hasOnlySubstanceUnits="false" id="M_ggagicolipa_c"
-      metaid="M_ggagicolipa_c" name="Glucosyl-galactosyl-glucosyl-inner core oligosaccharide lipid A">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ggagicolipa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ggagicolipa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2261" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM55192" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15475" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="C3H6NO6P" hasOnlySubstanceUnits="false" id="M_pser__L_p" metaid="M_pser__L_p"
-      name="O-Phospho-L-serine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pser__L_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pser__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:3-P-SERINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12718" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15811" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21966" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57524" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7692" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00272" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01005" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM379" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00738" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="2" fbc:chemicalFormula="C10H10NO6Fe" hasOnlySubstanceUnits="false" id="M_fe3dhbzs_p" metaid="M_fe3dhbzs_p"
-      name="Ferric 2,3-dihydroxybenzoylserine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_fe3dhbzs_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/fe3dhbzs" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM5748" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15460" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="1" fbc:chemicalFormula="Cu" hasOnlySubstanceUnits="false" id="M_cu_e" metaid="M_cu_e" name="Cu+">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cu_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cu" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23379" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49551" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49552" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM3568" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd30760" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C40H71N3O15P2" hasOnlySubstanceUnits="false" id="M_cdpdtdecg_c" metaid="M_cdpdtdecg_c"
-      name="CDP-1,2-ditetradecanoylglycerol">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cdpdtdecg_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cdpdtdecg" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-18388" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:103211" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM4512" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15423" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C29H58N1O8P1" hasOnlySubstanceUnits="false" id="M_pe120_c" metaid="M_pe120_c"
-      name="Phosphatidylethanolamine (didodecanoyl, n-C12:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pe120_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pe120" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-17088" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMGP02010098" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2858" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C38H74O10P1" hasOnlySubstanceUnits="false" id="M_pg160_p" metaid="M_pg160_p"
-      name="Phosphatidylglycerol (dihexadecanoyl, n-C16:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pg160_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pg160" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-8260" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:72829" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:73205" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:75159" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB10570" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMGP04010986" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM32179" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15538" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd25117" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="C27H51O8P1" hasOnlySubstanceUnits="false" id="M_pa120_p" metaid="M_pa120_p"
-      name="1,2-didodecanoyl-sn-glycerol 3-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pa120_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pa120" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM90509" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15521" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C12H24O5P1" hasOnlySubstanceUnits="false" id="M_ddcap_c" metaid="M_ddcap_c"
-      name="Dodecanoly-phosphate (n-C12:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ddcap_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ddcap" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM147470" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C16H32O5P" hasOnlySubstanceUnits="false" id="M_hdcap_c" metaid="M_hdcap_c"
-      name="Hexadecanoyl-phosphate (n-C16:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_hdcap_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/hdcap" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM147481" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C17H27N2O10PRS" hasOnlySubstanceUnits="false" id="M_egmeACP_c" metaid="M_egmeACP_c"
-      name="Enoylglutaryl-[acyl-carrier protein] methyl ester">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_egmeACP_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/egmeACP" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:Enoylglutaryl-ACP-methyl-esters" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C20374" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM11489" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd27020" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C7H8N5O3" hasOnlySubstanceUnits="false" id="M_cph4_c" metaid="M_cph4_c"
-      name="6-carboxy-5,6,7,8-tetrahydropterin">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cph4_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cph4" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-1699" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61032" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61126" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB60410" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C20239" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM3194" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd21472" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="O2S10Fe4R" hasOnlySubstanceUnits="false" id="M_iscu_2fe2s2_c" metaid="M_iscu_2fe2s2_c"
-      name="IscU with two bound [2Fe-2S] clusters">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_iscu_2fe2s2_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/iscu_2fe2s2" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM148287" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C9H15N5O4" hasOnlySubstanceUnits="false" id="M_thmnp_c" metaid="M_thmnp_c"
-      name="Tetrahydromonapterin">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_thmnp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/thmnp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2101" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:71177" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C21007" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM22017" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd26424" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="X" hasOnlySubstanceUnits="false" id="M_trdox_c" metaid="M_trdox_c"
-      name="Oxidized thioredoxin">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_trdox_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/trdox" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:Ox-Thioredoxin" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14726" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15240" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18191" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7845" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00343" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM148" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd11420" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd27735" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd29682" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C6H12O4S" hasOnlySubstanceUnits="false" id="M_5mtr_c" metaid="M_5mtr_c"
-      name="5-Methylthio-D-ribose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_5mtr_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/5mtr" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-560" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12148" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16895" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2101" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22007" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57941" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:78440" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C03089" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1592" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01981" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C11H12NO6P" hasOnlySubstanceUnits="false" id="M_3ig3p_c" metaid="M_3ig3p_c"
-      name="C'-(3-Indolyl)-glycerol 3-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_3ig3p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/3ig3p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:INDOLE-3-GLYCEROL-P" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:51793" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58866" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C03506" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM866" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02210" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd29667" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C11H16N2O7" hasOnlySubstanceUnits="false" id="M_sl26da_c" metaid="M_sl26da_c"
-      name="N-Succinyl-LL-2,6-diaminoheptanedioate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_sl26da_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/sl26da" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:N-SUCCINYLLL-2-6-DIAMINOPIMELATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12617" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12618" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17279" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21791" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21792" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58087" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7342" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB12267" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C04421" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1488" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02698" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C9H12N3O13P3" hasOnlySubstanceUnits="false" id="M_dctp_c" metaid="M_dctp_c"
-      name="DCTP C9H12N3O13P3">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dctp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dctp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DCTP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10494" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14072" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16311" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19243" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57724" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61481" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00998" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00458" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM360" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00356" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C10H12N4O4" hasOnlySubstanceUnits="false" id="M_din_c" metaid="M_din_c"
-      name="Deoxyinosine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_din_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/din" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DEOXYINOSINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19248" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23629" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28997" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:39841" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43293" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43436" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43437" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4413" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00071" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05512" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM935" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03279" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C10H8O6" hasOnlySubstanceUnits="false" id="M_ichor_c" metaid="M_ichor_c"
-      name="Isochorismate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ichor_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ichor" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ISOCHORISMATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14464" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17582" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24883" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29780" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5997" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00885" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM799" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00658" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C36H40N4O8" hasOnlySubstanceUnits="false" id="M_cpppg3_c" metaid="M_cpppg3_c"
-      name="Coproporphyrinogen III">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cpppg3_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cpppg3" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:COPROPORPHYRINOGEN_III" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14020" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15439" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23386" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:3880" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41560" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57309" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01261" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C03263" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM410" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02083" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C27H40N7O18P3S" hasOnlySubstanceUnits="false" id="M_3ohcoa_c" metaid="M_3ohcoa_c"
-      name="3-Oxohexanoyl-CoA">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_3ohcoa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/3ohcoa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:K-HEXANOYL-COA" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1641" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20172" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27648" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:62418" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03943" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62372" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05269" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07050018" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07050242" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM717" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03123" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C3H7NO3" hasOnlySubstanceUnits="false" id="M_ser__D_e" metaid="M_ser__D_e"
-      name="D-Serine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ser__D_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ser__D" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-SERINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13019" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:143888" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16523" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21090" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32840" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32841" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35247" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42262" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4245" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03406" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00740" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM694" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00550" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C4H4O8P" hasOnlySubstanceUnits="false" id="M_ohpb_c" metaid="M_ohpb_c"
-      name="2-Oxo-3-hydroxy-4-phosphobutanoate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ohpb_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ohpb" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:3OH-4P-OH-ALPHA-KETOBUTYRATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1240" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19731" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27951" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58538" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06801" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06054" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1514" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03606" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-2" fbc:chemicalFormula="C10H12N5O7P" hasOnlySubstanceUnits="false" id="M_amp_e" metaid="M_amp_e"
-      name="AMP C10H12N5O7P">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_amp_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/amp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:AMP" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:AMP-GROUP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12056" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13234" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13235" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13736" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13740" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16027" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22242" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22245" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2356" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40510" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40721" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40726" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40786" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40826" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:456215" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:47222" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00020" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D02769" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM14" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00018" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd22272" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="O2" hasOnlySubstanceUnits="false" id="M_o2s_c" metaid="M_o2s_c" name="Superoxide anion">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_o2s_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/o2s" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:SUPER-OXIDE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15143" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18421" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25935" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26839" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30492" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7710" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02168" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00704" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM330" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C35H51N7O26P2" hasOnlySubstanceUnits="false" id="M_ugmd_c" metaid="M_ugmd_c"
-      name="UDP-N-acetylmuramoyl-L-alanyl-D-gamma-glutamyl-meso-2,6-diaminopimelate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ugmd_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ugmd" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13460" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13463" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13481" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22124" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28639" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30905" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58582" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9831" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM162592" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C27H42FeN9O12" hasOnlySubstanceUnits="false" id="M_fecrm_c" metaid="M_fecrm_c"
-      name="Ferrichrome">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_fecrm_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/fecrm" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2241" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5019" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06228" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2825" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03724" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C6H13NO2" hasOnlySubstanceUnits="false" id="M_ile__L_p" metaid="M_ile__L_p"
-      name="L-Isoleucine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ile__L_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ile__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ILE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13127" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17191" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21344" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24898" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32604" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32605" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32612" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32613" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43290" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43342" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43366" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58045" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6255" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00172" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00407" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00065" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01100047" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM231" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00322" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C11H14N2O8P" hasOnlySubstanceUnits="false" id="M_nmn_p" metaid="M_nmn_p"
-      name="NMN C11H14N2O8P">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_nmn_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/nmn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:NICOTINAMIDE_NUCLEOTIDE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10433" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12397" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13409" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14646" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14647" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14648" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14649" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16171" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18201" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22850" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25522" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7557" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB59645" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00455" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM355" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00355" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H4N4O" hasOnlySubstanceUnits="false" id="M_hxan_p" metaid="M_hxan_p"
-      name="Hypoxanthine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_hxan_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/hxan" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:HYPOXANTHINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14431" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17368" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24762" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43237" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5841" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00157" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00262" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM213" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00226" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H11NO3S" hasOnlySubstanceUnits="false" id="M_metsox_R__L_p" metaid="M_metsox_R__L_p"
-      name="L-methionine-R-sulfoxide">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_metsox_R__L_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/metsox_R__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-8989" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-8990" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:L-Methionine-sulfoxides" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13142" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17016" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21361" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49031" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49032" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58772" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58773" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6272" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C02989" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C15998" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C15999" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2246" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01914" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd14720" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd14721" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15497" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15498" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd29319" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C10H11N5O7P" hasOnlySubstanceUnits="false" id="M_23cgmp_p" metaid="M_23cgmp_p"
-      name="2',3'-Cyclic GMP">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_23cgmp_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/23cgmp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-3709" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19214" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28181" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:60837" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:825" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06194" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM3149" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03702" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-1" fbc:chemicalFormula="C15H25N4O8" hasOnlySubstanceUnits="false" id="M_LalaDgluMdap_e"
-      metaid="M_LalaDgluMdap_e" name="L-alanine-D-glutamate-meso-2,6-diaminoheptanedioate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_LalaDgluMdap_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/LalaDgluMdap" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM90242" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15386" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H10N2O3S" hasOnlySubstanceUnits="false" id="M_cgly_p" metaid="M_cgly_p"
-      name="Cys Gly C5H10N2O3S">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cgly_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cgly" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CYS-GLY" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4047" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61694" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00078" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB28775" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01419" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM683" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01017" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C19H38O7P1" hasOnlySubstanceUnits="false" id="M_2hdecg3p_c" metaid="M_2hdecg3p_c"
-      name="2-hexadecanoyl-sn-glycerol 3-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2hdecg3p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2hdecg3p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-17276" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB07849" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMGP10050042" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM5465" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15355" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C22H44O9P1" hasOnlySubstanceUnits="false" id="M_1agpg160_p" metaid="M_1agpg160_p"
-      name="1-Acyl-sn-glycero-3-phosphoglycerol (n-C16:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_1agpg160_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/1agpg160" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2162" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:72825" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:73093" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:75158" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:75376" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMGP04050008" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM6605" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd26434" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="C12H12N2O5" hasOnlySubstanceUnits="false" id="M_4abzglu_p" metaid="M_4abzglu_p"
-      name="4-aminobenzoyl-glutamate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_4abzglu_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/4abzglu" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C8H7O4" hasOnlySubstanceUnits="false" id="M_34dhpha_c" metaid="M_34dhpha_c"
-      name="3-4-Dihydroxyphenylacetate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_34dhpha_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/34dhpha" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-782" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11696" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11697" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1386" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17612" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19889" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41936" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41941" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01161" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM645" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00854" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C6H11O7" hasOnlySubstanceUnits="false" id="M_glcn_c" metaid="M_glcn_c"
-      name="D-Gluconate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_glcn_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/glcn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLUCONATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12955" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18391" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20983" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20985" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20986" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24265" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24266" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:33198" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4157" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42715" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00625" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03373" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00257" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM341" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00222" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C10H11N5O13P2S" hasOnlySubstanceUnits="false" id="M_paps_c" metaid="M_paps_c"
-      name="3'-Phosphoadenylyl sulfate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_paps_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/paps" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PAPS" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11679" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11680" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1353" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17980" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19857" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58339" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62646" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00053" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM49" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00044" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C9H11N2O15P3" hasOnlySubstanceUnits="false" id="M_utp_c" metaid="M_utp_c"
-      name="UTP C9H11N2O15P3">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_utp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/utp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:UTP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13510" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15713" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27233" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:37567" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46397" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46398" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57481" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9850" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00075" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM121" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00062" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C5H5N2O4" hasOnlySubstanceUnits="false" id="M_dhor__S_c" metaid="M_dhor__S_c"
-      name="(S)-Dihydroorotate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dhor__S_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dhor__S" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DI-H-OROTATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11063" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17025" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18777" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18778" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30864" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:417" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42132" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03349" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00337" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM252" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00282" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C10H13N5O4" hasOnlySubstanceUnits="false" id="M_adn_c" metaid="M_adn_c" name="Adenosine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_adn_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/adn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ADENOSINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13734" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16335" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22237" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2472" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40558" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40825" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40906" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40911" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00050" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB04401" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB04402" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB04421" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00212" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00045" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM212" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00182" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C5H11O7P" hasOnlySubstanceUnits="false" id="M_2me4p_c" metaid="M_2me4p_c"
-      name="2-C-methyl-D-erythritol 4-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2me4p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2me4p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:2-C-METHYL-D-ERYTHRITOL-4-PHOSPHATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1030" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11483" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17764" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58262" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C11434" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1626" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd08286" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C12H22O11" hasOnlySubstanceUnits="false" id="M_tre_c" metaid="M_tre_c" name="Trehalose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_tre_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/tre" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-15990" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TREHALOSE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10202" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12281" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12284" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12287" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15251" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16551" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22365" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27082" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46211" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00975" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01083" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.glycan/G00293" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM198" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00794" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C10H13N5O3" hasOnlySubstanceUnits="false" id="M_dad_2_e" metaid="M_dad_2_e"
-      name="Deoxyadenosine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dad_2_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dad_2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DEOXYADENOSINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14112" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17256" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19234" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:39863" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40535" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40560" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40565" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4405" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00101" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB05778" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB11722" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00559" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM625" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00438" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H6N2O2" hasOnlySubstanceUnits="false" id="M_thym_e" metaid="M_thym_e"
-      name="Thymine C5H6N2O2">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_thym_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/thym" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:THYMINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15247" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17821" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27004" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46017" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9580" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00262" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00178" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM386" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00151" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C27H42FeN9O12" hasOnlySubstanceUnits="false" id="M_fecrm_p" metaid="M_fecrm_p"
-      name="Ferrichrome">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_fecrm_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/fecrm" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2241" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5019" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06228" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2825" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03724" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C10H12N4O5" hasOnlySubstanceUnits="false" id="M_ins_p" metaid="M_ins_p" name="Inosine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ins_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ins" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:INOSINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14456" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17596" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24841" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44407" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5927" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00195" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00294" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00054" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM334" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00246" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="1" fbc:chemicalFormula="K" hasOnlySubstanceUnits="false" id="M_k_c" metaid="M_k_c" name="Potassium">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_k_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/k" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:KCL" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26219" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29103" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49685" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8345" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00586" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00238" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C12568" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D01168" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D08403" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM95" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00205" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="O2" hasOnlySubstanceUnits="false" id="M_o2_p" metaid="M_o2_p" name="O2 O2">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_o2_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/o2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:OXYGEN-MOLECULE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10745" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13416" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15379" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23833" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25366" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26689" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27140" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29097" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29793" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30491" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44742" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7860" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01377" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00007" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00003" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM4" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00007" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C3H7NO2" hasOnlySubstanceUnits="false" id="M_ala_B_p" metaid="M_ala_B_p"
-      name="Beta-Alanine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ala_B_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ala_B" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:B-ALANINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10343" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12389" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16958" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22821" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41050" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57966" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:63070" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00056" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00099" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D07561" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM144" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00085" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C48H72CoN11O8" hasOnlySubstanceUnits="false" id="M_cbi_e" metaid="M_cbi_e"
-      name="Cobinamide">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cbi_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cbi" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:COBINAMIDE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48529" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1549" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="O4W1" hasOnlySubstanceUnits="false" id="M_tungs_p" metaid="M_tungs_p" name="Tungstate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_tungs_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/tungs" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TUNGSTATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30518" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:36271" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:36272" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46497" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46502" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C20679" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM88308" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15574" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-2" fbc:chemicalFormula="C10H13N2O8P" hasOnlySubstanceUnits="false" id="M_dtmp_e" metaid="M_dtmp_e"
-      name="DTMP C10H13N2O8P">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dtmp_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dtmp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TMP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10529" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14092" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15246" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17013" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26999" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45759" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45762" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45772" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45926" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46013" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46036" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46960" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:47711" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:63528" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:63549" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00364" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM257" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00298" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C35H68O5" hasOnlySubstanceUnits="false" id="M_12dgr160_c" metaid="M_12dgr160_c"
-      name="1,2-Diacyl-sn-glycerol (dihexadecanoyl, n-C16:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_12dgr160_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/12dgr160" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM3132" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C39H72O5" hasOnlySubstanceUnits="false" id="M_12dgr181_c" metaid="M_12dgr181_c"
-      name="1,2-Diacyl-sn-glycerol (dioctadec-11-enoyl, n-C18:1)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_12dgr181_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/12dgr181" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM3775" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="XH2" hasOnlySubstanceUnits="false" id="M_dsbcrd_p" metaid="M_dsbcrd_p"
-      name="Protein disulfide isomerase II (reduced)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dsbcrd_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dsbcrd" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM12772" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15449" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-3" fbc:chemicalFormula="C42H77O13P2" hasOnlySubstanceUnits="false" id="M_pgp181_p" metaid="M_pgp181_p"
-      name="Phosphatidylglycerophosphate (dioctadec-11-enoyl, n-C18:1)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pgp181_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pgp181" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM5269" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C5H3N2O4" hasOnlySubstanceUnits="false" id="M_orot_p" metaid="M_orot_p"
-      name="Orotate C5H3N2O4">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_orot_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/orot" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:OROTATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14698" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16742" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25719" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25720" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30839" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44781" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7787" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00226" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00295" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00055" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM235" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00247" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C8H13N2O5" hasOnlySubstanceUnits="false" id="M_LalaDglu_p" metaid="M_LalaDglu_p"
-      name="L-alanine-D-glutamate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_LalaDglu_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/LalaDglu" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2190" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61395" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61566" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C20957" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM3630" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15385" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C20H22N10O14P2" hasOnlySubstanceUnits="false" id="M_cdigmp_c" metaid="M_cdigmp_c"
-      name="Cyclic diguanosine monophosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cdigmp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cdigmp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM148172" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C9H12N2O6" hasOnlySubstanceUnits="false" id="M_uri_c" metaid="M_uri_c" name="Uridine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_uri_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/uri" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:URIDINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15296" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16704" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27227" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46386" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46391" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46460" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46463" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9893" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00296" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00299" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM288" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00249" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C10H13N5O3" hasOnlySubstanceUnits="false" id="M_dad_2_c" metaid="M_dad_2_c"
-      name="Deoxyadenosine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dad_2_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dad_2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DEOXYADENOSINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14112" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17256" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19234" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:39863" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40535" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40560" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40565" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4405" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00101" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB05778" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB11722" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00559" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM625" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00438" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C10H12N5O12P3" hasOnlySubstanceUnits="false" id="M_datp_c" metaid="M_datp_c"
-      name="DATP C10H12N5O12P3">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_datp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/datp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DATP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10491" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14069" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16284" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19238" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42290" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:495505" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61404" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00131" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM286" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00115" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C27H42N7O18P3S" hasOnlySubstanceUnits="false" id="M_3hhcoa_c" metaid="M_3hhcoa_c"
-      name="(S)-3-Hydroxyhexanoyl-CoA">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_3hhcoa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/3hhcoa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:OH-HEXANOYL-COA" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18780" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28276" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:419" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:62075" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03942" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62262" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05268" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07050017" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07050156" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM757" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03122" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C35H56N7O18P3S" hasOnlySubstanceUnits="false" id="M_3otdcoa_c" metaid="M_3otdcoa_c"
-      name="3-Oxotetradecanoyl-CoA">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_3otdcoa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/3otdcoa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-10284" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1654" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20183" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28726" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:62543" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03935" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06527" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05261" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07050256" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM707" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd12689" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C37H62N7O18P3S" hasOnlySubstanceUnits="false" id="M_3hhdcoa_c" metaid="M_3hhdcoa_c"
-      name="(S)-3-Hydroxyhexadecanoyl-CoA">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_3hhdcoa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/3hhdcoa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2232" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18752" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27402" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:397" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:62613" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03932" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62261" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05258" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07050161" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM825" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03113" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C27H40N7O17P3S" hasOnlySubstanceUnits="false" id="M_hx2coa_c" metaid="M_hx2coa_c"
-      name="Trans-Hex-2-enoyl-CoA">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_hx2coa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/hx2coa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2121" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10726" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27076" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28706" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:62077" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05271" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07050019" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07050393" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM753" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03125" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C17H25N3O17P2" hasOnlySubstanceUnits="false" id="M_uacmam_c" metaid="M_uacmam_c"
-      name="UDP-N-acetyl-D-mannosamine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_uacmam_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/uacmam" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:UDP-MANNAC" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13457" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13474" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16287" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22116" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57715" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:68623" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:68678" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9824" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB13112" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01170" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.glycan/G11112" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM932" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00861" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C6H10O5" hasOnlySubstanceUnits="false" id="M_glycogen_c" metaid="M_glycogen_c"
-      name="Glycogen C6H10O5">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_glycogen_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/glycogen" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:Glycogens" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24379" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24384" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28087" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5466" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00757" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00182" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.glycan/G11603" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM55375" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00155" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd27186" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C14H20N6O5S" hasOnlySubstanceUnits="false" id="M_ahcys_c" metaid="M_ahcys_c"
-      name="S-Adenosyl-L-homocysteine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ahcys_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ahcys" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ADENOSYL-HOMO-CYS" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12741" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12759" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12761" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16680" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22034" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45495" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57856" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:67009" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8945" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00939" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00021" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM19" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00019" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C8H9NO3" hasOnlySubstanceUnits="false" id="M_pydx_c" metaid="M_pydx_c" name="Pyridoxal">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pydx_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pydx" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PYRIDOXAL" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:131530" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14976" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17310" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26423" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45112" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8667" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01545" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00250" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM311" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00215" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-1" fbc:chemicalFormula="C3H5O3" hasOnlySubstanceUnits="false" id="M_lac__D_e" metaid="M_lac__D_e"
-      name="D-Lactate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_lac__D_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/lac__D" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-LACTATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11001" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16004" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18684" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:341" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42105" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42111" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43701" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00171" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01311" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00256" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM285" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00221" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C7H5O6" hasOnlySubstanceUnits="false" id="M_2mcacn_c" metaid="M_2mcacn_c"
-      name="Cis-2-Methylaconitate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2mcacn_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2mcacn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-1136" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11084" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16717" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18819" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:456" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57872" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06357" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C04225" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1792" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02597" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C7H6O6" hasOnlySubstanceUnits="false" id="M_aconm_c" metaid="M_aconm_c"
-      name="E-3-carboxy-2-pentenedioate 6-methyl ester">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_aconm_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/aconm" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:MONOMETHYL-ESTER-OF-TRANS-ACONITATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10951" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15663" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:277" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57470" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C11514" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07010698" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM3742" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd08353" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C10H13N5O4" hasOnlySubstanceUnits="false" id="M_adn_p" metaid="M_adn_p" name="Adenosine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_adn_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/adn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ADENOSINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13734" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16335" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22237" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2472" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40558" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40825" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40906" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40911" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00050" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB04401" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB04402" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB04421" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00212" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00045" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM212" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00182" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C4H8N2O3" hasOnlySubstanceUnits="false" id="M_asn__L_p" metaid="M_asn__L_p"
-      name="L-Asparagine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_asn__L_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/asn__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ASN" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13083" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17196" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21242" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22653" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32650" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32651" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32660" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32661" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40902" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58048" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6191" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00168" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00152" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C16438" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM147" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00132" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15142" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C10H13N5O4" hasOnlySubstanceUnits="false" id="M_dgsn_p" metaid="M_dgsn_p"
-      name="Deoxyguanosine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dgsn_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dgsn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DEOXYGUANOSINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14116" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17172" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19244" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23624" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42667" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42867" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42874" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42987" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4412" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00085" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00330" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM647" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00277" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C9H15O9" hasOnlySubstanceUnits="false" id="M_manglyc_p" metaid="M_manglyc_p"
-      name="2(alpha-D-Mannosyl)-D-glycerate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_manglyc_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/manglyc" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:2-O-ALPHA-MANNOSYL-D-GLYCERATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11403" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15847" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57541" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:851" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C11544" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1624" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd08374" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C2H6S" hasOnlySubstanceUnits="false" id="M_dms_p" metaid="M_dms_p"
-      name="Dimethyl sulfide">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dms_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dms" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-7670" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14168" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14175" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17437" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23800" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44169" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4611" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02303" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00580" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM444" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00450" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="H2S" hasOnlySubstanceUnits="false" id="M_h2s_p" metaid="M_h2s_p" name="Hydrogen sulfide">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_h2s_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/h2s" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-7046" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-846" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:HS" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13356" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14414" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15138" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16136" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24639" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29919" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30488" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30489" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43058" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45489" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5787" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03276" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00283" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM89582" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00239" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd24697" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="1" fbc:chemicalFormula="C25H46FeN6O8" hasOnlySubstanceUnits="false" id="M_feoxam_e" metaid="M_feoxam_e"
-      name="Generic ferrioxamine-Fe-III">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_feoxam_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/feoxam" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-3764" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2124" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4356" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:84700" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB14884" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06940" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D03670" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA08020169" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA08020175" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM94790" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd04273" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd23947" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C8H14O2S2" hasOnlySubstanceUnits="false" id="M_lipoate_e" metaid="M_lipoate_e"
-      name="Lipoate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_lipoate_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/lipoate" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:LIPOIC-ACID" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14519" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:146958" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16494" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25056" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25058" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30313" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30314" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30315" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43790" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43796" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6492" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:83088" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01451" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB14312" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00725" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C16241" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00086" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01130001" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1484" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00541" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd14958" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C8H8O" hasOnlySubstanceUnits="false" id="M_pacald_c" metaid="M_pacald_c"
-      name="Phenylacetaldehyde">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pacald_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pacald" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PHENYLACETALDEHYDE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14778" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16424" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25972" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43163" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8084" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06236" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00601" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM473" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00464" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C2H5O4S" hasOnlySubstanceUnits="false" id="M_isetac_c" metaid="M_isetac_c"
-      name="Isethionic acid">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_isetac_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/isetac" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-3745" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1157" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61904" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03903" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05123" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1630" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03048" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C37H57N7O20" hasOnlySubstanceUnits="false" id="M_anhgm4p_c" metaid="M_anhgm4p_c"
-      name="N-Acetyl-D-glucosamine(anhydrous)N-Acetylmuramyl-tetrapeptide">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_anhgm4p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/anhgm4p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2292" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM63488" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15398" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-11" fbc:chemicalFormula="C169H291N2O94P4" hasOnlySubstanceUnits="false" id="M_gggagicolipa_c"
-      metaid="M_gggagicolipa_c" name="Glucosyl-glucosyl-galactosyl-glucosyl-inner core oligosaccharide lipid A">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_gggagicolipa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/gggagicolipa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2259" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM55193" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15477" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="XH2" hasOnlySubstanceUnits="false" id="M_grxrd_c" metaid="M_grxrd_c"
-      name="Glutaredoxin (reduced)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_grxrd_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/grxrd" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM90719" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15481" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="O2S" hasOnlySubstanceUnits="false" id="M_so2_e" metaid="M_so2_e" name="Sulfur dioxide">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_so2_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/so2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:SULFUR-DIOXIDE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18422" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45789" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8992" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9351" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB34834" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C09306" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D05961" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM4835" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd06201" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C3H7NO2S" hasOnlySubstanceUnits="false" id="M_cys__D_c" metaid="M_cys__D_c"
-      name="D-Cysteine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cys__D_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cys__D" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-CYSTEINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12919" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16375" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20921" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32449" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32450" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32451" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35236" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4111" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41887" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03417" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00793" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2112" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00587" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C35H63O8P1" hasOnlySubstanceUnits="false" id="M_pa161_c" metaid="M_pa161_c"
-      name="1,2-dihexadec-9-enoyl-sn-glycerol 3-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pa161_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pa161" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM90510" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15525" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C34H65O13P2" hasOnlySubstanceUnits="false" id="M_pgp140_c" metaid="M_pgp140_c"
-      name="Phosphatidylglycerophosphate (ditetradecanoyl, n-C14:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pgp140_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pgp140" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM5272" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C38H69O13P2" hasOnlySubstanceUnits="false" id="M_pgp161_c" metaid="M_pgp161_c"
-      name="Phosphatidylglycerophosphate (dihexadec-9-enoyl, n-C16:1)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pgp161_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pgp161" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2230" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM75103" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15546" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd26451" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C42H81N1O10P1" hasOnlySubstanceUnits="false" id="M_ps180_c" metaid="M_ps180_c"
-      name="Phosphatidylserine (dioctadecanoyl, n-C18:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ps180_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ps180" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-12816" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:84519" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB12378" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMGP03010036" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM75116" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15557" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd23594" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C33H62N1O8P1" hasOnlySubstanceUnits="false" id="M_pe141_c" metaid="M_pe141_c"
-      name="Phosphatidylethanolamine (ditetradec-7-enoyl, n-C14:1)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pe141_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pe141" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM3693" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C40H74O10P1" hasOnlySubstanceUnits="false" id="M_cpg160_c" metaid="M_cpg160_c"
-      name="Cyclopropane phosphatidylglycerol (dihexadec-9,10-cyclo-anoyl, n-C16:0 cyclo)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cpg160_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cpg160" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2202" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM48210" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15435" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd26444" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C7H15NO3" hasOnlySubstanceUnits="false" id="M_crn__D_e" metaid="M_crn__D_e"
-      name="D-Carnitine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_crn__D_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/crn__D" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-CARNITINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11060" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:51453" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62634" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C15025" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM246" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd10719" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C3H8O2" hasOnlySubstanceUnits="false" id="M_13ppd_c" metaid="M_13ppd_c"
-      name="1,3-Propanediol">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_13ppd_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/13ppd" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-347" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14902" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16109" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26286" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44868" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8471" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C02457" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2861" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01618" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C12H13NO9P" hasOnlySubstanceUnits="false" id="M_pran_c" metaid="M_pran_c"
-      name="N-(5-Phospho-D-ribosyl)anthranilate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pran_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pran" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:N-5-PHOSPHORIBOSYL-ANTHRANILATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12431" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12432" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18277" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21472" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21488" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7091" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C04302" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1489" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02642" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C10H13N5O5" hasOnlySubstanceUnits="false" id="M_gsn_c" metaid="M_gsn_c" name="Guanosine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_gsn_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/gsn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GUANOSINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14375" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16750" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24444" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42840" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42847" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42853" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:471737" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5564" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00133" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00387" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM401" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00311" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C10H12N4O5" hasOnlySubstanceUnits="false" id="M_ins_c" metaid="M_ins_c" name="Inosine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ins_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ins" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:INOSINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14456" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17596" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24841" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44407" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5927" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00195" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00294" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00054" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM334" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00246" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C4H4N2O2" hasOnlySubstanceUnits="false" id="M_ura_c" metaid="M_ura_c" name="Uracil">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ura_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ura" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:URACIL" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15288" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17568" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27210" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43254" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46375" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9882" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00300" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00106" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00027" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D09776" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM158" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00092" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="1" fbc:chemicalFormula="C5H14NO" hasOnlySubstanceUnits="false" id="M_chol_e" metaid="M_chol_e"
-      name="Choline C5H14NO">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_chol_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/chol" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CHOLINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13985" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15354" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23212" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:3665" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41524" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:72322" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00097" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00114" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D07690" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D10498" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM90" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00098" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C2H5NO2" hasOnlySubstanceUnits="false" id="M_gly_e" metaid="M_gly_e" name="Glycine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_gly_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/gly" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLY" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10792" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:132194" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14344" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15428" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24368" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32507" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32508" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42964" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5460" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57305" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00123" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00037" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00011" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM29" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00033" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C9H17NO3" hasOnlySubstanceUnits="false" id="M_8aonn_c" metaid="M_8aonn_c"
-      name="8-Amino-7-oxononanoate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_8aonn_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/8aonn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:8-AMINO-7-OXONONANOATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12266" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15830" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20808" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2308" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57532" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB37790" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01092" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01060168" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01100058" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1141" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00800" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C8H10NO6P" hasOnlySubstanceUnits="false" id="M_pdx5p_c" metaid="M_pdx5p_c"
-      name="Pyridoxine 5'-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pdx5p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pdx5p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PYRIDOXINE-5P" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26430" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28803" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45202" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58589" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8672" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01319" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00627" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM454" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00478" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C6H7O7" hasOnlySubstanceUnits="false" id="M_23doguln_c" metaid="M_23doguln_c"
-      name="2,3-Dioxo-L-gulonate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_23doguln_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/23doguln" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-19692" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-334" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10900" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15622" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18578" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:226" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57441" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:60793" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB05971" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06511" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62803" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C04575" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01060195" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM958" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02784" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C3H9NO" hasOnlySubstanceUnits="false" id="M_tmao_e" metaid="M_tmao_e"
-      name="Trimethylamine N-oxide">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_tmao_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/tmao" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRIMETHYLAMINE-N-O" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15262" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15263" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15724" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27126" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9733" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00925" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01104" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM437" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00811" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C4H5O3" hasOnlySubstanceUnits="false" id="M_acac_p" metaid="M_acac_p"
-      name="Acetoacetate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_acac_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/acac" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:3-KETOBUTYRATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:131367" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13705" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15344" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22172" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2391" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:38871" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40507" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00060" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00164" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01030978" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01060003" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM154" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00142" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C4H7O2" hasOnlySubstanceUnits="false" id="M_but_p" metaid="M_but_p"
-      name="Butyrate (n-C4:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_but_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/but" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM162281" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C8H8O3" hasOnlySubstanceUnits="false" id="M_34dhpac_p" metaid="M_34dhpac_p"
-      name="3,4-Dihydroxyphenylacetaldehyde">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_34dhpac_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/34dhpac" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:34-DIHYDROXYPHENYLACETALDEHYDE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1385" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19888" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27978" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03791" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06256" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06778" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C04043" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1401" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02500" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-6" fbc:chemicalFormula="C110H196N2O39P2" hasOnlySubstanceUnits="false" id="M_lipa_e" metaid="M_lipa_e"
-      name="KDO(2)-lipid (A)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_lipa_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/lipa" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23656" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27963" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4476" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58540" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06026" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMSL02000001" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM946" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03587" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-6" fbc:chemicalFormula="C112H202N3O42P3" hasOnlySubstanceUnits="false" id="M_enlipa_e" metaid="M_enlipa_e"
-      name="Phosphoethanolamine KDO(2)-lipid (A)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_enlipa_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/enlipa" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:47762" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:60085" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C21173" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM7670" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15459" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="N2O" hasOnlySubstanceUnits="false" id="M_n2o_e" metaid="M_n2o_e" name="Nitrous oxide">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_n2o_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/n2o" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:NITROUS-OXIDE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14661" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17045" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25568" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44250" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7598" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB35807" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00887" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00102" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM579" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00659" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="2" fbc:chemicalFormula="Co" hasOnlySubstanceUnits="false" id="M_cobalt2_c" metaid="M_cobalt2_c" name="Co2+">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cobalt2_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cobalt2" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23337" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48827" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48828" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00608" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00175" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM90960" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00149" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="2" fbc:chemicalFormula="Co" hasOnlySubstanceUnits="false" id="M_cobalt2_p" metaid="M_cobalt2_p" name="Co2+">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cobalt2_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cobalt2" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23337" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48827" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48828" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00608" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00175" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM90960" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00149" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="1" fbc:chemicalFormula="C6H14NO2S" hasOnlySubstanceUnits="false" id="M_mmet_p" metaid="M_mmet_p"
-      name="S-Methyl-L-methionine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_mmet_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/mmet" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-397" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12772" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17728" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22057" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58252" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:67050" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8965" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C03172" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1119" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02027" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-3" fbc:chemicalFormula="AsO3" hasOnlySubstanceUnits="false" id="M_aso3_e" metaid="M_aso3_e" name="Arsenite">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_aso3_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/aso3" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-763" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2040" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13857" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22635" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2846" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29242" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29243" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29866" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49899" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49900" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB11620" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06697" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM658" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd04098" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd26385" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="X" hasOnlySubstanceUnits="false" id="M_dsbgox_p" metaid="M_dsbgox_p"
-      name="Periplasmic disulfide isomerase/thiol-disulphide oxidase (oxidized)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dsbgox_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dsbgox" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM97003" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15452" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C34H66O10P1" hasOnlySubstanceUnits="false" id="M_pg140_p" metaid="M_pg140_p"
-      name="Phosphatidylglycerol (ditetradecanoyl, n-C14:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pg140_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pg140" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-19677" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:60723" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMGP04010005" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM51019" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C24H46O9P1" hasOnlySubstanceUnits="false" id="M_2agpg181_c" metaid="M_2agpg181_c"
-      name="2-Acyl-sn-glycero-3-phosphoglycerol (n-C18:1)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2agpg181_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2agpg181" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM3455" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C42H80O11P" hasOnlySubstanceUnits="false" id="M_apg120_c" metaid="M_apg120_c"
-      name="Acyl phosphatidylglycerol (n-C12:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_apg120_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/apg120" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2194" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM40226" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd26441" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C54H104O11P" hasOnlySubstanceUnits="false" id="M_apg160_c" metaid="M_apg160_c"
-      name="Acyl phosphatidylglycerol (n-C16:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_apg160_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/apg160" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2197" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM40228" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd26443" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C14H26N2O13P" hasOnlySubstanceUnits="false" id="M_mchtbs6p_c" metaid="M_mchtbs6p_c"
-      name="N-monoacetylchitobiose 6'-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_mchtbs6p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/mchtbs6p" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C6H10O12P2" hasOnlySubstanceUnits="false" id="M_fdp_c" metaid="M_fdp_c"
-      name="D-Fructose 1,6-bisphosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_fdp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/fdp" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:37736" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49299" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00354" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM417" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00290" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C3H4O2" hasOnlySubstanceUnits="false" id="M_mthgxl_c" metaid="M_mthgxl_c"
-      name="Methylglyoxal">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_mthgxl_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/mthgxl" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-10807" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:METHYL-GLYOXAL" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11643" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14599" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17158" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25303" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6875" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01167" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00546" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM310" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00428" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd22830" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C6H12O5" hasOnlySubstanceUnits="false" id="M_rmn_c" metaid="M_rmn_c" name="L-Rhamnose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_rmn_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/rmn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-15405" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:L-rhamnopyranose" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:L-rhamnose" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13160" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16055" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21378" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26546" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45427" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57622" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:62345" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:62346" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6292" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00849" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00507" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2967" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00396" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd27379" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C10H13N2O8P" hasOnlySubstanceUnits="false" id="M_dtmp_c" metaid="M_dtmp_c"
-      name="DTMP C10H13N2O8P">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dtmp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dtmp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TMP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10529" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14092" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15246" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17013" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26999" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45759" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45762" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45772" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45926" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46013" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46036" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46960" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:47711" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:63528" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:63549" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00364" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM257" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00298" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C10H12N5O11P2" hasOnlySubstanceUnits="false" id="M_gdp_c" metaid="M_gdp_c"
-      name="GDP C10H12N5O11P2">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_gdp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/gdp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GDP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13327" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14379" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17552" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24448" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42738" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5212" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58189" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:65180" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00035" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.glycan/G10620" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM30" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00031" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C6H12O6" hasOnlySubstanceUnits="false" id="M_man_c" metaid="M_man_c" name="D-Mannose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_man_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/man" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-mannopyranose" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12999" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14575" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16024" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21057" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:33930" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:37684" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4208" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00169" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00159" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM182" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00138" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd27437" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C95H152N8O28P2" hasOnlySubstanceUnits="false" id="M_uaagmda_c" metaid="M_uaagmda_c"
-      name="Undecaprenyl-diphospho-N-acetylmuramoyl-(N-acetylglucosamine)-L-ala-D-glu-meso-2,6-diaminopimeloyl-D-ala-D-ala">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_uaagmda_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/uaagmda" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1242" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03495" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C7H15NO3" hasOnlySubstanceUnits="false" id="M_crn_e" metaid="M_crn_e" name="L-Carnitine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_crn_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/crn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CARNITINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11817" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13091" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13947" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16347" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17126" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20047" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21256" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23038" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29085" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:3424" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:39547" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6202" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00062" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01467" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62496" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00318" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00487" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D02176" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM173" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00266" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd19003" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="2" fbc:chemicalFormula="Fe" hasOnlySubstanceUnits="false" id="M_fe2_c" metaid="M_fe2_c" name="Fe2+ mitochondria">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_fe2_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/fe2" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13319" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13321" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21129" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24876" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29033" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:34754" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49599" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00692" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C14818" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM111" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd10515" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="1" fbc:chemicalFormula="C12H17N4OS" hasOnlySubstanceUnits="false" id="M_thm_e" metaid="M_thm_e" name="Thiamin">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_thm_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/thm" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:THIAMINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15227" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18385" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26941" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46393" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49107" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9530" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00235" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00378" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM322" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00305" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C3H6O3" hasOnlySubstanceUnits="false" id="M_glyald_e" metaid="M_glyald_e"
-      name="D-Glyceraldehyde">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_glyald_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/glyald" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLYCERALD" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12982" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17378" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21025" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:39973" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4186" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00577" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM435" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00448" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C8H7N" hasOnlySubstanceUnits="false" id="M_indole_e" metaid="M_indole_e" name="Indole">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_indole_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/indole" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:INDOLE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14444" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16881" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24794" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35579" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35581" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43537" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5900" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00738" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00463" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM377" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00359" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="2" fbc:chemicalFormula="Mg" hasOnlySubstanceUnits="false" id="M_mg2_e" metaid="M_mg2_e" name="Magnesium">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_mg2_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/mg2" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13379" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18420" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25112" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:39127" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49736" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6635" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00547" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00305" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C07755" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C07876" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C12567" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00731" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D01167" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM653" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00254" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C5H6O5" hasOnlySubstanceUnits="false" id="M_S2hglut_c" metaid="M_S2hglut_c"
-      name="(S)-2-Hydroxyglutarate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_S2hglut_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/S2hglut" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-381" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11036" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16782" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18738" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18739" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32797" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:380" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C03196" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM90068" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02041" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C2H3O3" hasOnlySubstanceUnits="false" id="M_glyclt_p" metaid="M_glyclt_p"
-      name="Glycolate C2H3O3">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_glyclt_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/glyclt" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLYCOLLATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14348" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17497" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24388" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24390" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29805" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42865" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5475" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00115" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03035" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00160" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM222" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00139" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd12347" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C10H12N4O6" hasOnlySubstanceUnits="false" id="M_xtsn_p" metaid="M_xtsn_p"
-      name="Xanthosine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_xtsn_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/xtsn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:XANTHOSINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10066" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15323" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18107" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27327" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00299" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01762" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM687" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01217" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="C5H4O5" hasOnlySubstanceUnits="false" id="M_akg_p" metaid="M_akg_p"
-      name="2-Oxoglutarate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_akg_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/akg" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:2-KETOGLUTARATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-16852" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11638" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1253" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16810" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19748" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19749" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30915" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30916" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40661" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62781" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00026" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM20" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00024" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="1" fbc:chemicalFormula="C12H25N2O7" hasOnlySubstanceUnits="false" id="M_frulys_c" metaid="M_frulys_c"
-      name="Fructoselysine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_frulys_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/frulys" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:FRUCTOSELYSINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24109" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61393" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:63523" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C16488" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1742" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15466" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-1" fbc:chemicalFormula="C6H14O8P" hasOnlySubstanceUnits="false" id="M_g3pg_e" metaid="M_g3pg_e"
-      name="Glycerophosphoglycerol">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_g3pg_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/g3pg" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLYCEROPHOSPHOGLYCEROL" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5457" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61933" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C03274" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM598" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02090" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C19H35N2O8PRS" hasOnlySubstanceUnits="false" id="M_ocACP_c" metaid="M_ocACP_c"
-      name="Octanoyl-ACP (n-C8:0ACP)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ocACP_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ocACP" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM90185" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C14H25O2" hasOnlySubstanceUnits="false" id="M_ttdcea_p" metaid="M_ttdcea_p"
-      name="Tetradecenoate (n-C14:1)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ttdcea_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ttdcea" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM641" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C21H44NO7P1" hasOnlySubstanceUnits="false" id="M_2agpe160_c" metaid="M_2agpe160_c"
-      name="2-Acyl-sn-glycero-3-phosphoethanolamine (n-C16:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2agpe160_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2agpe160" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2177" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:131743" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:132926" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB11473" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMGP02050036" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM34810" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15339" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd26438" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-6" fbc:chemicalFormula="C84H148N2O37P2" hasOnlySubstanceUnits="false" id="M_kdo2lipid4_p"
-      metaid="M_kdo2lipid4_p" name="KDO(2)-lipid IV(A)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_kdo2lipid4_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/kdo2lipid4" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:KDO2-LIPID-IVA" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23657" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28526" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4477" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:60365" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06025" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.glycan/G11160" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMSL02000003" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM824" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03586" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C22H28N9O13P3S" hasOnlySubstanceUnits="false" id="M_athtp_c" metaid="M_athtp_c"
-      name="Adenosine thiamine triphosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_athtp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/athtp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-1095" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:71393" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:71394" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB13646" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM8249" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C39H64N7O18P3S" hasOnlySubstanceUnits="false" id="M_3ohodcoa_c" metaid="M_3ohodcoa_c"
-      name="3-Oxooctadecanoyl-CoA">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_3ohodcoa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/3ohodcoa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-10260" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:50571" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:71407" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06498" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C16216" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07050248" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM513" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd14935" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C30H28N3O16" hasOnlySubstanceUnits="false" id="M_23dhbzs3_c" metaid="M_23dhbzs3_c"
-      name="2-3-dihydroxybenzoylserine trimer">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_23dhbzs3_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/23dhbzs3" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM145882" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C9H17O10S" hasOnlySubstanceUnits="false" id="M_sqg_c" metaid="M_sqg_c"
-      name="1-(?-D-sulfoquinovosyl)glycerol">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_sqg_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/sqg" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="C27H31N9O15P2" hasOnlySubstanceUnits="false" id="M_fad_p" metaid="M_fad_p"
-      name="Flavin adenine dinucleotide oxidized">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_fad_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/fad" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:FAD" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13315" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16238" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21125" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42388" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4956" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57692" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01248" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00016" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00005" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM33" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00015" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C6H11O6" hasOnlySubstanceUnits="false" id="M_rhmn_c" metaid="M_rhmn_c"
-      name="L-rhamnonate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_rhmn_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/rhmn" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="CH2NO5P" hasOnlySubstanceUnits="false" id="M_cbp_c" metaid="M_cbp_c"
-      name="Carbamoyl phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cbp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cbp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CARBAMOYL-P" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13942" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17672" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23005" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:3389" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41567" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58228" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01096" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00169" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM138" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00146" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C5H7O3" hasOnlySubstanceUnits="false" id="M_3mob_c" metaid="M_3mob_c"
-      name="3-Methyl-2-oxobutanoate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_3mob_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/3mob" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:2-KETO-ISOVALERATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11851" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:132177" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1584" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16530" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20115" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43714" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00141" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01020274" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM238" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00123" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C8H12NO6" hasOnlySubstanceUnits="false" id="M_suchms_c" metaid="M_suchms_c"
-      name="O-Succinyl-L-homoserine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_suchms_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/suchms" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:O-SUCCINYL-L-HOMOSERINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12699" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12723" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16160" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21975" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57661" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7704" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01118" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM820" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00822" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C9H13N3O4" hasOnlySubstanceUnits="false" id="M_dcyt_c" metaid="M_dcyt_c"
-      name="Deoxycytidine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dcyt_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dcyt" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DEOXYCYTIDINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15698" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19240" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41417" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41430" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41434" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41806" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4407" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00014" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00881" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM704" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00654" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C31H48N7O17P3S" hasOnlySubstanceUnits="false" id="M_dc2coa_c" metaid="M_dc2coa_c"
-      name="Trans-Dec-2-enoyl-CoA">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dc2coa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dc2coa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:T2-DECENOYL-COA" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10723" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61406" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03948" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05275" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07050023" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07050175" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07050391" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM580" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03129" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C3H8O3" hasOnlySubstanceUnits="false" id="M_glyc_e" metaid="M_glyc_e" name="Glycerol">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_glyc_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/glyc" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLYCEROL" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:131422" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14334" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17754" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24351" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42998" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5448" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00131" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00116" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00028" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM89612" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00100" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C6H9O3" hasOnlySubstanceUnits="false" id="M_4mop_c" metaid="M_4mop_c"
-      name="4-Methyl-2-oxopentanoate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_4mop_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/4mop" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:2K-4CH3-PENTANOATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12020" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17865" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1891" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20438" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41619" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48430" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00233" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM404" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00200" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C6H11O9P" hasOnlySubstanceUnits="false" id="M_gal1p_c" metaid="M_gal1p_c"
-      name="Alpha-D-Galactose 1-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_gal1p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/gal1p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GALACTOSE-1P" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10232" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12305" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12306" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17973" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22374" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42878" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58336" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00645" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03359" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00446" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM336" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00348" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd19025" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="1" fbc:chemicalFormula="C9H21N2O2" hasOnlySubstanceUnits="false" id="M_dann_c" metaid="M_dann_c"
-      name="7,8-Diaminononanoate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dann_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dann" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DIAMINONONANOATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12242" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17830" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20765" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2247" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58500" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01037" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01100062" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1140" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00764" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C16H23N5O16P2" hasOnlySubstanceUnits="false" id="M_gdpmann_c" metaid="M_gdpmann_c"
-      name="GDP-D-mannose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_gdpmann_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/gdpmann" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GDP-MANNOSE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13328" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13333" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13340" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15820" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21159" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42729" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5225" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57527" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:84880" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:84881" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62759" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00096" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.glycan/G10614" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM82" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00083" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C3H3O4" hasOnlySubstanceUnits="false" id="M_2h3oppan_c" metaid="M_2h3oppan_c"
-      name="2-Hydroxy-3-oxopropanoate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2h3oppan_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2h3oppan" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TARTRONATE-S-ALD" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1123" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11583" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:131382" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15194" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16992" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19605" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57978" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06781" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06938" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01146" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM475" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00843" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C3H3O4" hasOnlySubstanceUnits="false" id="M_hpyr_c" metaid="M_hpyr_c"
-      name="Hydroxypyruvate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_hpyr_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/hpyr" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:OH-PYR" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11837" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14425" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17180" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20082" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20083" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30841" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:39999" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5813" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01352" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00168" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM392" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00145" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-2" fbc:chemicalFormula="C4H4O6" hasOnlySubstanceUnits="false" id="M_tartr__L_e" metaid="M_tartr__L_e"
-      name="L-tartrate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_tartr__L_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/tartr__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TARTRATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10961" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11018" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15193" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15671" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18710" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18711" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26849" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30924" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35397" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35398" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:358" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45866" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00956" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00898" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00103" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM816" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00666" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C48H72CoN11O8" hasOnlySubstanceUnits="false" id="M_cbi_c" metaid="M_cbi_c"
-      name="Cobinamide">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cbi_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cbi" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:COBINAMIDE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48529" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1549" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-1" fbc:chemicalFormula="C8H15O2" hasOnlySubstanceUnits="false" id="M_octa_e" metaid="M_octa_e"
-      name="Octanoate (n-C8:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_octa_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/octa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-195" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25646" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25648" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28837" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:3373" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44501" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00482" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62511" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06423" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D05220" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01010008" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM750" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03846" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-3" fbc:chemicalFormula="C10H12N5O11P2" hasOnlySubstanceUnits="false" id="M_gdp_e" metaid="M_gdp_e"
-      name="GDP C10H12N5O11P2">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_gdp_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/gdp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GDP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13327" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14379" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17552" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24448" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42738" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5212" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58189" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:65180" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00035" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.glycan/G10620" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM30" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00031" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C2H6OS" hasOnlySubstanceUnits="false" id="M_dmso_p" metaid="M_dmso_p"
-      name="Dimethyl sulfoxide">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dmso_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dmso" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DMSO" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23801" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28262" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42138" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4612" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02151" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C11143" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D01043" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM745" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd08021" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-3" fbc:chemicalFormula="C10H12N5O11P2" hasOnlySubstanceUnits="false" id="M_gdp_p" metaid="M_gdp_p"
-      name="GDP C10H12N5O11P2">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_gdp_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/gdp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GDP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13327" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14379" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17552" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24448" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42738" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5212" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58189" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:65180" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00035" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.glycan/G10620" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM30" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00031" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C8H8O2" hasOnlySubstanceUnits="false" id="M_4hoxpacd_e" metaid="M_4hoxpacd_e"
-      name="4-Hydroxyphenylacetaldehyde">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_4hoxpacd_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/4hoxpacd" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:HYDRPHENYLAC-CPD" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10899" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12012" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15621" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1872" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20417" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03767" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C03765" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM479" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02361" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H9NO4" hasOnlySubstanceUnits="false" id="M_acser_p" metaid="M_acser_p"
-      name="O-Acetyl-L-serine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_acser_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/acser" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ACETYLSERINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12685" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12710" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12724" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17981" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21938" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44568" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58340" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7668" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03011" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00979" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM418" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00722" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C48H87N3O15P2" hasOnlySubstanceUnits="false" id="M_cdpdodecg_c" metaid="M_cdpdodecg_c"
-      name="CDP-1,2-dioctadecanoylglycerol">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cdpdodecg_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cdpdodecg" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-12814" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:104121" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM45856" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15421" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C34H65N1O10P1" hasOnlySubstanceUnits="false" id="M_ps140_c" metaid="M_ps140_c"
-      name="Phosphatidylserine (ditetradecanoyl, n-C14:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ps140_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ps140" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM7665" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C17H34O7P1" hasOnlySubstanceUnits="false" id="M_2tdecg3p_c" metaid="M_2tdecg3p_c"
-      name="2-tetradecanoyl-sn-glycerol 3-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2tdecg3p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2tdecg3p" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM5491" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15363" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C17H32O7P1" hasOnlySubstanceUnits="false" id="M_2tdec7eg3p_c" metaid="M_2tdec7eg3p_c"
-      name="2-tetradec-7-enoyl-sn-glycerol 3-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2tdec7eg3p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2tdec7eg3p" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM5490" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15362" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C40H44N20O27P4S4Mo" hasOnlySubstanceUnits="false" id="M_bmocogdp_c"
-      metaid="M_bmocogdp_c" name="Bis-molybdopterin guanine dinucleotide">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_bmocogdp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/bmocogdp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM147054" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H10O5" hasOnlySubstanceUnits="false" id="M_mththf_e" metaid="M_mththf_e"
-      name="(2R,4S)-2-methyl-2,3,3,4-tetrahydroxytetrahydrofuran">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_mththf_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/mththf" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-10774" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44800" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C21382" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM30887" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C5H7O7P" hasOnlySubstanceUnits="false" id="M_dhptdp_c" metaid="M_dhptdp_c"
-      name="(4S)-4-hydroxy-5-phosphonooxypentane-2,3-dione">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dhptdp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dhptdp" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C24H39O5" hasOnlySubstanceUnits="false" id="M_cholate_c" metaid="M_cholate_c"
-      name="Cholate c">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cholate_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cholate" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CHOLATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11895" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13978" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16359" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1694" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20216" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20223" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23168" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23210" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29077" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29747" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41494" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57748" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00619" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00695" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D10699" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMST04010001" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM450" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00526" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="1" fbc:chemicalFormula="C8N1O5H14R" hasOnlySubstanceUnits="false" id="M_puacgam_c" metaid="M_puacgam_c"
-      name="Poly-?-1,6-N-acetyl-D-glucosamine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_puacgam_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/puacgam" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="HO7P2" hasOnlySubstanceUnits="false" id="M_ppi_c" metaid="M_ppi_c" name="Diphosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ppi_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ppi" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PPI" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PYROPHOSPHATE-GROUP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13420" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18361" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29888" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:33017" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:33018" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:33019" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42009" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45067" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45208" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45212" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8683" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00250" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00013" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM11" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00012" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd27828" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C21H25N7O17P3" hasOnlySubstanceUnits="false" id="M_nadp_c" metaid="M_nadp_c"
-      name="Nicotinamide adenine dinucleotide phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_nadp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/nadp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:NADP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13397" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13398" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18009" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21903" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25523" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29868" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44405" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44409" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58349" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7424" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00006" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM5" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00006" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C5H8NO4" hasOnlySubstanceUnits="false" id="M_glu__L_c" metaid="M_glu__L_c"
-      name="L-Glutamate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_glu__L_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/glu__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLT" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:Glutamates" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13107" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14321" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16015" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18237" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21301" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21304" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24314" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29985" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29987" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29988" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42825" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5431" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6224" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:76051" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00148" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB60475" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00025" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00302" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00007" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D04341" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM89557" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00023" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd19002" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd27177" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C4H2O4" hasOnlySubstanceUnits="false" id="M_fum_c" metaid="M_fum_c" name="Fumarate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_fum_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/fum" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:FUM" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14284" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18012" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22956" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22957" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22958" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24122" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24124" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29806" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:36180" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:37154" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:37155" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42511" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42743" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5190" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00134" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00122" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D02308" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM93" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00106" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="3" fbc:chemicalFormula="C7H22N3" hasOnlySubstanceUnits="false" id="M_spmd_c" metaid="M_spmd_c" name="Spermidine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_spmd_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/spmd" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:SPERMIDINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15095" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15097" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16610" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26732" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26733" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45647" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57834" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9218" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01257" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00315" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM124" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00264" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C6H13NO2" hasOnlySubstanceUnits="false" id="M_ile__L_c" metaid="M_ile__L_c"
-      name="L-Isoleucine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ile__L_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ile__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ILE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13127" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17191" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21344" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24898" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32604" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32605" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32612" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32613" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43290" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43342" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43366" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58045" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6255" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00172" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00407" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00065" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01100047" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM231" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00322" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C7H9O6" hasOnlySubstanceUnits="false" id="M_3dhq_c" metaid="M_3dhq_c"
-      name="3-Dehydroquinate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_3dhq_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/3dhq" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DEHYDROQUINATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11781" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12122" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1487" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17947" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19997" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32364" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42078" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB12710" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00944" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM478" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00699" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C6H11N3O4P" hasOnlySubstanceUnits="false" id="M_hisp_c" metaid="M_hisp_c"
-      name="L-Histidinol phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_hisp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/hisp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:L-HISTIDINOL-P" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13119" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16996" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21327" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43319" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57980" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6242" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01100" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1482" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00807" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-2" fbc:chemicalFormula="O4S" hasOnlySubstanceUnits="false" id="M_so4_e" metaid="M_so4_e" name="Sulfate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_so4_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/so4" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:HSO4" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:SULFATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15135" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16189" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26836" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29199" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45687" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45693" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45696" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9335" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01448" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00059" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D05963" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM58" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00048" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="1" fbc:chemicalFormula="C5H13N2O2" hasOnlySubstanceUnits="false" id="M_orn_e" metaid="M_orn_e" name="Ornithine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_orn_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/orn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:L-ORNITHINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11448" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13148" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15729" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18257" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19370" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21367" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32964" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44667" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46911" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46912" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46913" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46914" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6280" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7784" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00214" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00818" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB04984" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62654" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62718" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00077" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01602" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D08302" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01100057" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM89689" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00064" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd19016" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C6H13O9P" hasOnlySubstanceUnits="false" id="M_galt1p_c" metaid="M_galt1p_c"
-      name="Galactitol 1-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_galt1p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/galt1p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GALACTITOL-1-PHOSPHATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14287" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24140" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28663" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5252" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:60083" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06311" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1667" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03752" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C3H5O2" hasOnlySubstanceUnits="false" id="M_ppa_c" metaid="M_ppa_c"
-      name="Propionate (n-C3:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ppa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ppa" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM162260" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C2H7NO3S" hasOnlySubstanceUnits="false" id="M_taur_c" metaid="M_taur_c"
-      name="Taurine C2H7NO3S">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_taur_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/taur" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TAURINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15195" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15891" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26852" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32970" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45877" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:507393" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9406" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00251" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00245" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00047" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM282" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00210" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C28H39N5O23P2" hasOnlySubstanceUnits="false" id="M_uamag_c" metaid="M_uamag_c"
-      name="UDP-N-acetylmuramoyl-L-alanyl-D-glutamate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_uamag_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/uamag" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:UDP-AA-GLUTAMATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13461" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13482" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16970" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22125" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46143" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57968" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:83900" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9832" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00692" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM955" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00525" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C14H13N6O3" hasOnlySubstanceUnits="false" id="M_dhpt_c" metaid="M_dhpt_c"
-      name="Dihydropteroate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dhpt_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dhpt" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:7-8-DIHYDROPTEROATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14160" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17839" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23762" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4581" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01412" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00921" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM965" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00683" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd28673" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd28675" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-1" fbc:chemicalFormula="C9H15O9" hasOnlySubstanceUnits="false" id="M_manglyc_e" metaid="M_manglyc_e"
-      name="2(alpha-D-Mannosyl)-D-glycerate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_manglyc_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/manglyc" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:2-O-ALPHA-MANNOSYL-D-GLYCERATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11403" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15847" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57541" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:851" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C11544" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1624" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd08374" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C6H8O6" hasOnlySubstanceUnits="false" id="M_ascb__L_p" metaid="M_ascb__L_p"
-      name="L-Ascorbate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ascb__L_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ascb__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ASCORBATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13082" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13861" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17208" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21240" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2868" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29073" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:38290" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40892" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43473" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00044" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB14273" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB29945" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00072" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C20364" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00018" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM89592" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00059" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C6H11O7" hasOnlySubstanceUnits="false" id="M_idon__L_p" metaid="M_idon__L_p"
-      name="L-Idonate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_idon__L_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/idon__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:L-IDONATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13126" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17796" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21335" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21336" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57659" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58494" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6250" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00770" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1565" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00573" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="CH4N2O" hasOnlySubstanceUnits="false" id="M_urea_p" metaid="M_urea_p" name="Urea CH4N2O">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_urea_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/urea" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:UREA" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:134711" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15292" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16199" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27218" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32285" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46379" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48376" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9888" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00294" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00086" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00023" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D01749" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D10496" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM117" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00073" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-11" fbc:chemicalFormula="C151H261N2O79P4" hasOnlySubstanceUnits="false" id="M_gicolipa_c" metaid="M_gicolipa_c"
-      name="Glucosyl-inner core oligosaccharide lipid A">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_gicolipa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/gicolipa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2247" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM55194" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15479" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-6" fbc:chemicalFormula="C126H226N2O40P2" hasOnlySubstanceUnits="false" id="M_halipa_e" metaid="M_halipa_e"
-      name="Hepta-acylated KDO(2)-lipid (A)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_halipa_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/halipa" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM93466" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15483" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C4H9O3S" hasOnlySubstanceUnits="false" id="M_butso3_c" metaid="M_butso3_c"
-      name="Butanesulfonate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_butso3_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/butso3" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM7138" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd11596" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C8H14O2S2" hasOnlySubstanceUnits="false" id="M_lipoate_p" metaid="M_lipoate_p"
-      name="Lipoate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_lipoate_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/lipoate" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:LIPOIC-ACID" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14519" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:146958" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16494" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25056" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25058" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30313" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30314" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30315" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43790" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43796" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6492" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:83088" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01451" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB14312" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00725" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C16241" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00086" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01130001" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1484" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00541" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd14958" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C18H36O9P1" hasOnlySubstanceUnits="false" id="M_2agpg120_p" metaid="M_2agpg120_p"
-      name="2-Acyl-sn-glycero-3-phosphoglycerol (n-C12:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2agpg120_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2agpg120" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM3450" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C24H48O9P1" hasOnlySubstanceUnits="false" id="M_2agpg180_p" metaid="M_2agpg180_p"
-      name="2-Acyl-sn-glycero-3-phosphoglycerol (n-C18:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2agpg180_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2agpg180" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2133" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM150642" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd26427" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C17H36NO7P1" hasOnlySubstanceUnits="false" id="M_1agpe120_p" metaid="M_1agpe120_p"
-      name="1-Acyl-sn-glycero-3-phosphoethanolamine (n-C12:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_1agpe120_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/1agpe120" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2148" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMGP02050005" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM32692" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd26432" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C2O4" hasOnlySubstanceUnits="false" id="M_oxa_c" metaid="M_oxa_c" name="Oxalate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_oxa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/oxa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:OXALATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:132952" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14702" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16995" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25729" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25730" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30623" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44583" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44820" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46904" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7811" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02329" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00209" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D07103" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM291" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00180" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-1" fbc:chemicalFormula="C5H9O6" hasOnlySubstanceUnits="false" id="M_dxylnt_e" metaid="M_dxylnt_e"
-      name="D-Xylonate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dxylnt_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dxylnt" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="1" fbc:chemicalFormula="C9H19N2O3" hasOnlySubstanceUnits="false" id="M_nalme_c" metaid="M_nalme_c"
-      name="N-?-acetyl lysine methyl ester">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_nalme_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/nalme" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C15H22N2O17P2" hasOnlySubstanceUnits="false" id="M_udpg_c" metaid="M_udpg_c"
-      name="UDPglucose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_udpg_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/udpg" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-12575" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13498" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13505" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18066" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22103" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27234" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28532" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42885" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46228" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46229" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:52249" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58367" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58885" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9845" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9895" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00029" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.glycan/G10608" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM52" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00026" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd28293" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H10N2O3" hasOnlySubstanceUnits="false" id="M_gln__L_c" metaid="M_gln__L_c"
-      name="L-Glutamine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_gln__L_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/gln__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLN" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13110" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18050" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21308" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24316" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28300" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32665" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32666" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32678" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32679" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42812" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42814" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42899" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42943" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5432" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58359" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6227" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00641" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00064" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00303" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00015" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM37" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00053" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00253" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C7H10O5" hasOnlySubstanceUnits="false" id="M_3c3hmp_c" metaid="M_3c3hmp_c"
-      name="3-Carboxy-3-hydroxy-4-methylpentanoate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_3c3hmp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/3c3hmp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:3-CARBOXY-3-HYDROXY-ISOCAPROATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1178" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35128" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C02504" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01170083" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM985" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01646" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C7H6NO2" hasOnlySubstanceUnits="false" id="M_anth_c" metaid="M_anth_c"
-      name="Anthranilate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_anth_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/anth" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ANTHRANILATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13841" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16567" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22575" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22577" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22578" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2757" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30754" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40980" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01123" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00108" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM188" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00093" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C10H11N5O10P2" hasOnlySubstanceUnits="false" id="M_pap_c" metaid="M_pap_c"
-      name="Adenosine 3',5'-bisphosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pap_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pap" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:3-5-ADP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13735" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17985" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22240" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2475" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58343" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00054" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM45" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00045" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C10H11N4O9P" hasOnlySubstanceUnits="false" id="M_xmp_c" metaid="M_xmp_c"
-      name="Xanthosine 5'-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_xmp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/xmp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:XANTHOSINE-5-PHOSPHATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10067" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10938" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15324" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15652" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27328" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57464" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62755" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00655" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM298" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00497" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C6H13NO2" hasOnlySubstanceUnits="false" id="M_ile__L_e" metaid="M_ile__L_e"
-      name="L-Isoleucine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ile__L_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ile__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ILE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13127" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17191" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21344" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24898" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32604" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32605" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32612" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32613" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43290" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43342" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43366" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58045" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6255" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00172" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00407" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00065" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01100047" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM231" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00322" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C48H74O4" hasOnlySubstanceUnits="false" id="M_2omhmbl_c" metaid="M_2omhmbl_c"
-      name="2-Octaprenyl-3-methyl-5-hydroxy-6-methoxy-1,4-benzoquinol">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2omhmbl_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2omhmbl" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:OCTAPRENYL-METHYL-OH-METHOXY-BENZQ" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1231" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19728" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27688" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61705" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2187" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15360" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C6H6O7" hasOnlySubstanceUnits="false" id="M_5dh4dglc_c" metaid="M_5dh4dglc_c"
-      name="5-Dehydro-4-deoxy-D-glucarate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_5dh4dglc_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/5dh4dglc" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:5-KETO-4-DEOXY-D-GLUCARATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12117" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16369" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2048" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20561" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35453" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35454" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42815" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42819" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43704" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00679" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM854" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00515" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C9H11O4" hasOnlySubstanceUnits="false" id="M_cechddd_c" metaid="M_cechddd_c"
-      name="Cis-3-(3-carboxyethyl)-3,5-cyclohexadiene-1,2-diol">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cechddd_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cechddd" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CARBOXYETHYL-3-5-CYCLOHEXADIENE-1-2-DIOL" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48690" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48691" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:60087" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:60088" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1636" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C6H7O7" hasOnlySubstanceUnits="false" id="M_25dkglcn_c" metaid="M_25dkglcn_c"
-      name="2,5-diketo-D-gluconate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_25dkglcn_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/25dkglcn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:25-DIDEHYDRO-D-GLUCONATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1070" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11449" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18281" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19378" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58428" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C02780" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01050471" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM936" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01793" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C17H25N5O16P2" hasOnlySubstanceUnits="false" id="M_adphep_DD_c" metaid="M_adphep_DD_c"
-      name="ADP-D-glycero-D-manno-heptose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_adphep_DD_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/adphep_DD" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ADP-D-GLYCERO-D-MANNO-HEPTOSE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13223" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16693" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20842" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2343" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57863" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:59966" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:59967" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06397" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1648" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03830" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd29671" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="H2S" hasOnlySubstanceUnits="false" id="M_h2s_e" metaid="M_h2s_e" name="Hydrogen sulfide">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_h2s_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/h2s" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-7046" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-846" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:HS" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13356" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14414" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15138" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16136" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24639" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29919" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30488" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30489" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43058" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45489" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5787" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03276" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00283" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM89582" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00239" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd24697" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-1" fbc:chemicalFormula="C4H5O3" hasOnlySubstanceUnits="false" id="M_acac_e" metaid="M_acac_e"
-      name="Acetoacetate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_acac_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/acac" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:3-KETOBUTYRATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:131367" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13705" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15344" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22172" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2391" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:38871" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40507" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00060" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00164" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01030978" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01060003" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM154" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00142" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C10H10NO5" hasOnlySubstanceUnits="false" id="M_4adcho_c" metaid="M_4adcho_c"
-      name="4-amino-4-deoxychorismate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_4adcho_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/4adcho" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:4-AMINO-4-DEOXYCHORISMATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11956" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18198" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1943" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35180" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35181" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58406" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C11355" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1458" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd08210" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H10O5" hasOnlySubstanceUnits="false" id="M_rib__D_p" metaid="M_rib__D_p"
-      name="D-Ribose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_rib__D_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/rib__D" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-Ribofuranose" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-Ribopyranose" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13011" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16988" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21078" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4233" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46999" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:47006" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:47013" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00283" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00121" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C21057" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM242" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00105" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H10O5" hasOnlySubstanceUnits="false" id="M_xyl__D_p" metaid="M_xyl__D_p"
-      name="D-Xylose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_xyl__D_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/xyl__D" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-Xylopyranose" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:53455" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:65327" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00098" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03763" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00181" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D06346" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM348" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00154" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C6H12O6" hasOnlySubstanceUnits="false" id="M_inost_p" metaid="M_inost_p"
-      name="Myo-Inositol">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_inost_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/inost" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-8052" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:MYO-INOSITOL" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10601" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12826" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12831" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17268" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19183" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24848" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25451" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27372" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4200" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43559" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:52772" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00211" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02256" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB34220" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00137" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C19891" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D08079" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM127" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00121" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd21131" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C18H35O2" hasOnlySubstanceUnits="false" id="M_ocdca_p" metaid="M_ocdca_p"
-      name="Octadecanoate (n-C18:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ocdca_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ocdca" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:STEARIC_ACID" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:231588" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25629" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25631" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28842" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45710" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00827" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01530" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00119" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01010018" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01010047" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM236" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01080" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-1" fbc:chemicalFormula="C6H13NO8P" hasOnlySubstanceUnits="false" id="M_g3ps_e" metaid="M_g3ps_e"
-      name="Glycerophosphoserine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_g3ps_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/g3ps" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2030" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61931" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:62013" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:64765" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:64945" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM97117" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15468" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="C10H12N5O8P" hasOnlySubstanceUnits="false" id="M_3gmp_p" metaid="M_3gmp_p"
-      name="Guanosine 3  phosphate C10H12N5O8P">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_3gmp_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/3gmp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-3708" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24447" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28072" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:39948" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42888" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5567" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:60732" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06193" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2183" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03701" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="C37H57N7O20" hasOnlySubstanceUnits="false" id="M_anhgm4p_p" metaid="M_anhgm4p_p"
-      name="N-Acetyl-D-glucosamine(anhydrous)N-Acetylmuramyl-tetrapeptide">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_anhgm4p_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/anhgm4p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2292" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM63488" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15398" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C14H22N3O15P2" hasOnlySubstanceUnits="false" id="M_udpLa4n_c" metaid="M_udpLa4n_c"
-      name="Uridine 5''-diphospho-{beta}-4-deoxy-4-amino-L-arabinose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_udpLa4n_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/udpLa4n" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:UDP-4-AMINO-4-DEOXY-L-ARABINOSE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:47025" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58708" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C16153" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1786" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd14874" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-11" fbc:chemicalFormula="C192H333N2O101P4" hasOnlySubstanceUnits="false" id="M_hacolipa_e" metaid="M_hacolipa_e"
-      name="Hepta-acylated core oligosaccharide lipid A (E. coli)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_hacolipa_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/hacolipa" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM11799" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C89H145N1O32P2" hasOnlySubstanceUnits="false" id="M_o16aund_c" metaid="M_o16aund_c"
-      name="O16 antigen undecaprenyl diphosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_o16aund_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/o16aund" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2279" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM65211" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15520" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="C89H145N1O32P2" hasOnlySubstanceUnits="false" id="M_o16aund_p" metaid="M_o16aund_p"
-      name="O16 antigen undecaprenyl diphosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_o16aund_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/o16aund" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2279" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM65211" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15520" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C17H31N2O9PRS" hasOnlySubstanceUnits="false" id="M_3hhexACP_c" metaid="M_3hhexACP_c"
-      name="(R)-3-Hydroxyhexanoyl-[acyl-carrier protein]">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_3hhexACP_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/3hhexACP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:326" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05747" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07060006" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM25370" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd11479" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C23H39N2O8PRS" hasOnlySubstanceUnits="false" id="M_t3c5ddeceACP_c"
-      metaid="M_t3c5ddeceACP_c" name="Trans-3-cis-5-dodecenoyl-[acyl-carrier protein]">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_t3c5ddeceACP_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/t3c5ddeceACP" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM5959" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15569" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C30H57N1O10P1" hasOnlySubstanceUnits="false" id="M_ps120_c" metaid="M_ps120_c"
-      name="Phosphatidylserine (didodecanoyl, n-C12:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ps120_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ps120" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM7659" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C35H64O5" hasOnlySubstanceUnits="false" id="M_12dgr161_p" metaid="M_12dgr161_p"
-      name="1,2-Diacyl-sn-glycerol (dihexadec-9-enoyl, n-C16:1)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_12dgr161_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/12dgr161" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM3774" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C27H52O5" hasOnlySubstanceUnits="false" id="M_12dgr120_p" metaid="M_12dgr120_p"
-      name="1,2-Diacyl-sn-glycerol (didodecanoyl, n-C12:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_12dgr120_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/12dgr120" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM4939" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="1" fbc:chemicalFormula="C8H13N2O2" hasOnlySubstanceUnits="false" id="M_pydam_p" metaid="M_pydam_p"
-      name="Pyridoxamine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pydam_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pydam" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PYRIDOXAMINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:131533" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14978" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16410" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26426" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45228" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57761" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8669" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01431" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62696" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00534" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM548" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00419" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C10H15N2O3S" hasOnlySubstanceUnits="false" id="M_btn_p" metaid="M_btn_p" name="Biotin">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_btn_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/btn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:BIOTIN" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13905" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15956" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22882" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22884" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:3108" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41236" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57586" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00030" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00120" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00029" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM304" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00104" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C14H28O5P" hasOnlySubstanceUnits="false" id="M_ttdcap_c" metaid="M_ttdcap_c"
-      name="Tetradecanoyl-phosphate (n-C14:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ttdcap_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ttdcap" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM147613" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="CH4" hasOnlySubstanceUnits="false" id="M_ch4_p" metaid="M_ch4_p" name="Methane">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ch4_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ch4" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CH4" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:METHYL-GROUP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14585" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16183" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25220" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29360" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29434" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29438" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6811" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02714" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01438" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM714" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01024" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd27447" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="C17H19N4O9P" hasOnlySubstanceUnits="false" id="M_fmn_p" metaid="M_fmn_p"
-      name="FMN C17H19N4O9P">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_fmn_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/fmn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:FMN" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13317" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17621" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21127" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42587" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4960" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58210" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00061" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM119" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00050" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C5H7O7P" hasOnlySubstanceUnits="false" id="M_dhptdd_c" metaid="M_dhptdd_c"
-      name="3-hydroxy-5-phosphonooxypentane-2,4-dione">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dhptdd_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dhptdd" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C4H10O2S2" hasOnlySubstanceUnits="false" id="M_dtgcl_c" metaid="M_dtgcl_c"
-      name="2-hydroxyethyldisulfide">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dtgcl_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dtgcl" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C24H39O5" hasOnlySubstanceUnits="false" id="M_cholate_p" metaid="M_cholate_p"
-      name="Cholate c">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cholate_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cholate" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CHOLATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11895" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13978" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16359" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1694" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20216" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20223" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23168" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23210" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29077" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29747" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41494" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57748" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00619" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00695" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D10699" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMST04010001" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM450" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00526" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C29H38N7O19P3S" hasOnlySubstanceUnits="false" id="M_34dphacoa_c" metaid="M_34dphacoa_c"
-      name="3,4-dihydroxyphenylacetyl-CoA">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_34dphacoa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/34dphacoa" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C7H11O7" hasOnlySubstanceUnits="false" id="M_metglcur_p" metaid="M_metglcur_p"
-      name="1-O-methyl-Beta-D-glucuronate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_metglcur_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/metglcur" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C6H11O9P" hasOnlySubstanceUnits="false" id="M_g1p_c" metaid="M_g1p_c"
-      name="D-Glucose 1-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_g1p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/g1p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-glucose-1-phosphates" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLC-1-P" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10246" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12320" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12967" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12970" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16077" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21001" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21004" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29042" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4169" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42623" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57629" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58601" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01306" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01586" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00103" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM89588" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00089" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd28817" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C7H14N2O3" hasOnlySubstanceUnits="false" id="M_acorn_c" metaid="M_acorn_c"
-      name="N2-Acetyl-L-ornithine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_acorn_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/acorn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:N-ALPHA-ACETYLORNITHINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12634" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16543" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21814" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40771" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57805" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7368" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03357" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06489" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00437" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM817" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00342" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H9NO3" hasOnlySubstanceUnits="false" id="M_glu5sa_c" metaid="M_glu5sa_c"
-      name="L-Glutamate 5-semialdehyde">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_glu5sa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/glu5sa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:L-GLUTAMATE_GAMMA-SEMIALDEHYDE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13109" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17232" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21302" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58066" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6225" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02104" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01165" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM245" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00858" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C6H9O4" hasOnlySubstanceUnits="false" id="M_2dhp_c" metaid="M_2dhp_c"
-      name="2-Dehydropantoate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2dhp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2dhp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:2-DEHYDROPANTOATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1071" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11561" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17094" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19545" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00966" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM959" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00712" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C25H36N7O18P3S" hasOnlySubstanceUnits="false" id="M_aacoa_c" metaid="M_aacoa_c"
-      name="Acetoacetyl-CoA">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_aacoa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/aacoa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ACETOACETYL-COA" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11756" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13706" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15345" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22173" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2392" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41333" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57286" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01484" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB11665" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00332" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07050030" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM133" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00279" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C49H56FeN4O5" hasOnlySubstanceUnits="false" id="M_hemeO_c" metaid="M_hemeO_c"
-      name="Heme O C49H56FeN4O5">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_hemeO_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/hemeO" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-17063" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:HEME_O" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24480" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:36301" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:60530" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61719" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01162" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C15672" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1278" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd11313" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C4H9NO2" hasOnlySubstanceUnits="false" id="M_4abut_e" metaid="M_4abut_e"
-      name="4-Aminobutanoate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_4abut_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/4abut" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:4-AMINO-BUTYRATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11961" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16865" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1786" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:193777" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20317" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20318" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30566" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40483" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:59888" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00112" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00334" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00058" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01100039" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM192" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00281" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-1" fbc:chemicalFormula="C5H8NO4" hasOnlySubstanceUnits="false" id="M_glu__L_e" metaid="M_glu__L_e"
-      name="L-Glutamate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_glu__L_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/glu__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLT" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:Glutamates" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13107" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14321" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16015" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18237" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21301" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21304" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24314" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29985" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29987" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29988" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42825" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5431" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6224" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:76051" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00148" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB60475" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00025" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00302" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00007" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D04341" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM89557" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00023" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd19002" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd27177" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C46H70O" hasOnlySubstanceUnits="false" id="M_2oph_c" metaid="M_2oph_c"
-      name="2-Octaprenylphenol">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2oph_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2oph" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:2-OCTAPRENYLPHENOL" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1236" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40398" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40407" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05810" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1886" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03444" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C17H24N3O15P" hasOnlySubstanceUnits="false" id="M_ckdo_c" metaid="M_ckdo_c"
-      name="CMP-3-deoxy-D-manno-octulosonate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ckdo_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ckdo" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CMP-KDO" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13275" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18014" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20874" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:3277" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41566" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:59825" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:85987" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:86284" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C04121" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM535" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02546" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C6H8O8" hasOnlySubstanceUnits="false" id="M_glcr_c" metaid="M_glcr_c"
-      name="D-Glucarate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_glcr_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/glcr" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-GLUCARATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12953" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16002" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20980" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20982" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30612" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:33801" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4155" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42731" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB29881" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00818" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01170108" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM744" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00609" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C7H13O10P" hasOnlySubstanceUnits="false" id="M_gmhep7p_c" metaid="M_gmhep7p_c"
-      name="D-Glycero-D-manno-heptose 7-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_gmhep7p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/gmhep7p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-12543" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-ALPHABETA-D-HEPTOSE-7-PHOSPHATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21032" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28723" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4190" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:59955" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:60202" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:60204" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C07836" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C19882" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM17114" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd04918" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd21122" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd26805" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C39H64N7O17P3S" hasOnlySubstanceUnits="false" id="M_od2coa_c" metaid="M_od2coa_c"
-      name="Trans-Octadec-2-enoyl-CoA">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_od2coa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/od2coa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-10262" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:50570" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:71412" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06529" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62633" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C16218" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07050385" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM954" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd14937" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="2" fbc:chemicalFormula="C5H16N4" hasOnlySubstanceUnits="false" id="M_agm_p" metaid="M_agm_p" name="Agmatine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_agm_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/agm" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:AGMATHINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13747" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17431" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18576" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2514" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40556" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58145" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01432" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB60259" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00179" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM328" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00152" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="1" fbc:chemicalFormula="C5H14NO" hasOnlySubstanceUnits="false" id="M_chol_p" metaid="M_chol_p"
-      name="Choline C5H14NO">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_chol_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/chol" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CHOLINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13985" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15354" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23212" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:3665" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41524" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:72322" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00097" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00114" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D07690" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D10498" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM90" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00098" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C9H9O3" hasOnlySubstanceUnits="false" id="M_3hpppn_p" metaid="M_3hpppn_p"
-      name="3-(3-hydroxy-phenyl)propionate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_3hpppn_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/3hpppn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:3-HYDROXYPHENYL-PROPIONATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1427" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57277" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00375" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C11457" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1634" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd08304" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-12" fbc:chemicalFormula="C6H6O24P6" hasOnlySubstanceUnits="false" id="M_minohp_p" metaid="M_minohp_p"
-      name="Myo-Inositol hexakisphosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_minohp_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/minohp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:MI-HEXAKISPHOSPHATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10603" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11366" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12829" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12832" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17401" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19200" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58130" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03502" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB60271" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01204" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM491" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00885" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd16891" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="C9H12N3O7P" hasOnlySubstanceUnits="false" id="M_dcmp_p" metaid="M_dcmp_p"
-      name="DCMP C9H12N3O7P">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dcmp_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dcmp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DCMP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10493" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14070" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14071" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14115" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15918" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19242" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41838" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41875" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41881" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57566" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01202" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00239" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM266" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00206" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-5" fbc:chemicalFormula="C127H198N9O52P2" hasOnlySubstanceUnits="false" id="M_eca3und_p" metaid="M_eca3und_p"
-      name="(enterobacterial common antigen)x3 undecaprenyl-diphosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_eca3und_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/eca3und" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM6543" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15456" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C69H113N1O16P2" hasOnlySubstanceUnits="false" id="M_ragund_c" metaid="M_ragund_c"
-      name="Rhamanosyl-N-acetylglucosamyl-undecaprenyl diphosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ragund_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ragund" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2289" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM80754" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15562" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="NO" hasOnlySubstanceUnits="false" id="M_no_p" metaid="M_no_p" name="Nitric oxide">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_no_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/no" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:NITRIC-OXIDE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14657" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16480" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25546" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44452" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7583" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03378" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00533" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00074" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM228" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-4" fbc:chemicalFormula="C74H114N14O40" hasOnlySubstanceUnits="false" id="M_murein4p4p_p" metaid="M_murein4p4p_p"
-      name="Two linked disacharide tetrapeptide murein units (uncrosslinked, middle of chain)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_murein4p4p_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/murein4p4p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2269" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM88347" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15505" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C27H49N2O8PRS" hasOnlySubstanceUnits="false" id="M_tpalm2eACP_c" metaid="M_tpalm2eACP_c"
-      name="Trans-Hexadec-2-enoyl-[acyl-carrier protein]">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_tpalm2eACP_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/tpalm2eACP" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:2-Hexadecenoyl-ACPs" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10729" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05763" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07060020" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM29072" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd11477" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C38H73O13P2" hasOnlySubstanceUnits="false" id="M_pgp160_c" metaid="M_pgp160_c"
-      name="Phosphatidylglycerophosphate (dihexadecanoyl, n-C16:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pgp160_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pgp160" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-12821" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM32180" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15545" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd23599" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C37H74N1O8P1" hasOnlySubstanceUnits="false" id="M_pe160_c" metaid="M_pe160_c"
-      name="Phosphatidylethanolamine (dihexadecanoyl, n-C16:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pe160_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pe160" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-12819" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:73005" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:73127" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB05317" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB08923" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMGP02010037" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM32178" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15531" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd23597" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd29054" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-6" fbc:chemicalFormula="C112H202N3O42P3" hasOnlySubstanceUnits="false" id="M_enlipa_p" metaid="M_enlipa_p"
-      name="Phosphoethanolamine KDO(2)-lipid (A)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_enlipa_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/enlipa" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:47762" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:60085" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C21173" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM7670" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15459" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C42H78O10P1" hasOnlySubstanceUnits="false" id="M_pg181_p" metaid="M_pg181_p"
-      name="Phosphatidylglycerol (dioctadec-11-enoyl, n-C18:1)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pg181_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pg181" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-18396" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1773" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C21H24O6" hasOnlySubstanceUnits="false" id="M_thcur_c" metaid="M_thcur_c"
-      name="Tetrahydrocurcumin">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_thcur_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/thcur" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C21H29N7O15P2" hasOnlySubstanceUnits="false" id="M_nadhx__R_c" metaid="M_nadhx__R_c"
-      name="(R)-NADHX">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_nadhx__R_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/nadhx__R" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C12H13NO9P" hasOnlySubstanceUnits="false" id="M_2cpr5p_c" metaid="M_2cpr5p_c"
-      name="1-(2-Carboxyphenylamino)-1-deoxy-D-ribulose 5-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2cpr5p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2cpr5p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CARBOXYPHENYLAMINO-DEOXYRIBULOSE-P" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11186" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18959" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28625" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29112" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:565" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:566" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58613" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01302" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1455" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00956" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C9H12N3O7P" hasOnlySubstanceUnits="false" id="M_dcmp_c" metaid="M_dcmp_c"
-      name="DCMP C9H12N3O7P">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dcmp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dcmp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DCMP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10493" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14070" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14071" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14115" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15918" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19242" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41838" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41875" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41881" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57566" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01202" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00239" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM266" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00206" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C10H12N5O7P" hasOnlySubstanceUnits="false" id="M_dgmp_c" metaid="M_dgmp_c"
-      name="DGMP C10H12N5O7P">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dgmp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dgmp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DGMP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10496" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14074" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16192" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19246" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41902" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41939" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41944" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42676" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42726" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42733" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45049" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:47449" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57673" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00362" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM546" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00296" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C6H9NOS" hasOnlySubstanceUnits="false" id="M_4mhetz_c" metaid="M_4mhetz_c"
-      name="4-Methyl-5-(2-hydroxyethyl)-thiazole">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_4mhetz_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/4mhetz" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:THZ" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12021" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12022" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12086" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17957" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2011" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20522" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46320" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB32985" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C04294" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM962" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02636" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C9H11NO3" hasOnlySubstanceUnits="false" id="M_tyr__L_e" metaid="M_tyr__L_e"
-      name="L-Tyrosine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_tyr__L_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/tyr__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TYR" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13181" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15277" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17895" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18186" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21411" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27176" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32760" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32761" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32762" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32784" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32785" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32786" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46070" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46161" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58315" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6313" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9800" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00158" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00647" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00082" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01536" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00022" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM76" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00069" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd30745" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C50H70O2" hasOnlySubstanceUnits="false" id="M_2dmmq8_c" metaid="M_2dmmq8_c"
-      name="2-Demethylmenaquinone 8">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2dmmq8_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2dmmq8" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DEMETHYLMENAQUINONE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48455" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMPR02030027" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2178" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15352" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C3H7NO2S" hasOnlySubstanceUnits="false" id="M_cys__L_e" metaid="M_cys__L_e"
-      name="L-Cysteine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cys__L_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cys__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CYS" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13095" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14061" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15356" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17561" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21261" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23508" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32442" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32443" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32445" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32456" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32457" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32458" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35235" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35237" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4050" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41227" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41700" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41768" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41781" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41811" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6207" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00574" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00097" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00736" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00026" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM55" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00084" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00547" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C7H14N2O4" hasOnlySubstanceUnits="false" id="M_26dap__M_e" metaid="M_26dap__M_e"
-      name="Meso-2,6-Diaminoheptanedioate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_26dap__M_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/26dap__M" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:MESO-DIAMINOPIMELATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10598" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12822" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12823" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12825" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16488" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25203" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25204" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30308" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40838" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57791" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00680" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM529" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00516" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C9H9O2" hasOnlySubstanceUnits="false" id="M_pppn_c" metaid="M_pppn_c"
-      name="Phenylpropanoate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pppn_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pppn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:3-PHENYLPROPIONATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20186" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20187" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26002" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26005" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28631" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43112" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:51057" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8103" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00764" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05629" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1403" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03343" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C36H62O31" hasOnlySubstanceUnits="false" id="M_malthx_c" metaid="M_malthx_c"
-      name="Maltohexaose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_malthx_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/malthx" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:MALTOHEXAOSE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25141" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27445" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61953" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6667" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB12253" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01936" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.glycan/G00755" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1317" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01329" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C6H3O6" hasOnlySubstanceUnits="false" id="M_acon_T_c" metaid="M_acon_T_c"
-      name="Trans-Aconitate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_acon_T_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/acon_T" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-225" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10719" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12869" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12878" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15708" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22210" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22211" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27069" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27070" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32806" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46108" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00958" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C02341" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1388" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01563" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C28H46N8O17P3S" hasOnlySubstanceUnits="false" id="M_bbtcoa_c" metaid="M_bbtcoa_c"
-      name="Gamma-butyrobetainyl-CoA">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_bbtcoa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/bbtcoa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GAMMA-BUTYROBETAINYL-COA" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61513" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61517" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C20749" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07050321" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM5762" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15412" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-1" fbc:chemicalFormula="C12H23O2" hasOnlySubstanceUnits="false" id="M_ddca_e" metaid="M_ddca_e"
-      name="Dodecanoate (n-C12:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ddca_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ddca" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM162258" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C29H53N2O8PRS" hasOnlySubstanceUnits="false" id="M_octeACP_c" metaid="M_octeACP_c"
-      name="Cis-octadec-11-enoyl-[acyl-carrier protein] (n-C18:1)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_octeACP_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/octeACP" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM89950" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="2" fbc:chemicalFormula="C17H36N6O5S" hasOnlySubstanceUnits="false" id="M_gtspmd_c" metaid="M_gtspmd_c"
-      name="Glutathionylspermidine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_gtspmd_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/gtspmd" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLUTATHIONYLSPERMIDINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12624" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14329" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16613" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24341" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46146" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5438" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57835" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05730" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1329" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03411" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C3H7NO2S" hasOnlySubstanceUnits="false" id="M_cys__L_p" metaid="M_cys__L_p"
-      name="L-Cysteine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cys__L_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cys__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CYS" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13095" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14061" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15356" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17561" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21261" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23508" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32442" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32443" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32445" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32456" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32457" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32458" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35235" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35237" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4050" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41227" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41700" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41768" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41781" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41811" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6207" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00574" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00097" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00736" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00026" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM55" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00084" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00547" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C22H33FeN4O13" hasOnlySubstanceUnits="false" id="M_arbtn_fe3_p" metaid="M_arbtn_fe3_p"
-      name="Aerobactin">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_arbtn_fe3_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/arbtn_fe3" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:AEROBACTIN" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2234" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13745" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18157" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2499" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58396" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB04051" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05554" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1464" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03294" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd26452" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="1" fbc:chemicalFormula="C5H13N2O2" hasOnlySubstanceUnits="false" id="M_orn_p" metaid="M_orn_p" name="Ornithine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_orn_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/orn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:L-ORNITHINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11448" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13148" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15729" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18257" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19370" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21367" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32964" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44667" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46911" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46912" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46913" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46914" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6280" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7784" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00214" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00818" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB04984" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62654" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62718" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00077" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01602" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D08302" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01100057" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM89689" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00064" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd19016" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C4H6NO4" hasOnlySubstanceUnits="false" id="M_asp__L_p" metaid="M_asp__L_p"
-      name="L-Aspartate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_asp__L_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/asp__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:L-ASPARTATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13085" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:132943" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17053" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21244" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21247" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22659" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22660" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29991" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29992" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29993" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29995" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35391" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40853" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40900" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40913" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40942" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6193" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00191" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62186" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62501" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00049" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C16433" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00013" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM42" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00041" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd19181" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C7H15NO3" hasOnlySubstanceUnits="false" id="M_crn_p" metaid="M_crn_p" name="L-Carnitine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_crn_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/crn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CARNITINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11817" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13091" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13947" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16347" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17126" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20047" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21256" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23038" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29085" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:3424" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:39547" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6202" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00062" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01467" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62496" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00318" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00487" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D02176" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM173" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00266" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd19003" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H9NO2" hasOnlySubstanceUnits="false" id="M_pro__L_p" metaid="M_pro__L_p"
-      name="L-Proline">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pro__L_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pro__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PRO" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13154" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17203" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:184637" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21373" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26271" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32862" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32864" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32871" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32872" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42067" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45040" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45100" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45159" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58054" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:60039" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6286" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00162" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00148" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C16435" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00035" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM114" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00129" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15140" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="CO2" hasOnlySubstanceUnits="false" id="M_co2_p" metaid="M_co2_p" name="CO2 CO2">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_co2_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/co2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CARBON-DIOXIDE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13282" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13283" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13284" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13285" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16526" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23011" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:3283" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48829" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01967" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00011" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00004" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM13" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00011" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="3" fbc:chemicalFormula="Fe" hasOnlySubstanceUnits="false" id="M_fe3_c" metaid="M_fe3_c" name="Iron (Fe3+)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_fe3_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/fe3" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13320" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21130" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24877" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29034" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:34755" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49595" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB12943" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C14819" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM196" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd10516" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-2" fbc:chemicalFormula="C27H31N9O15P2" hasOnlySubstanceUnits="false" id="M_fad_e" metaid="M_fad_e"
-      name="Flavin adenine dinucleotide oxidized">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_fad_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/fad" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:FAD" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13315" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16238" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21125" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42388" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4956" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57692" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01248" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00016" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00005" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM33" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00015" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="1" fbc:chemicalFormula="C3H9N2O2" hasOnlySubstanceUnits="false" id="M_23dappa_c" metaid="M_23dappa_c"
-      name="2,3-diaminopropionate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_23dappa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/23dappa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:23-Diaminopropanoate" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:L-23-DIAMINOPROPANOATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11419" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13043" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16303" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18383" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19309" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21190" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42159" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42164" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49983" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57721" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58468" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6153" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:84374" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:876" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02006" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C03401" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06393" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01100051" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM91374" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02150" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03828" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd21925" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="1" fbc:chemicalFormula="C8H12NO2" hasOnlySubstanceUnits="false" id="M_dopa_p" metaid="M_dopa_p" name="Dopamine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dopa_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dopa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DOPAMINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11695" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11930" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14203" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1764" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18243" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23886" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43686" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:59905" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00073" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C03758" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D07870" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM205" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02357" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C8H20NO6P" hasOnlySubstanceUnits="false" id="M_g3pc_p" metaid="M_g3pc_p"
-      name="Sn-Glycero-3-phosphocholine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_g3pc_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/g3pc" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:L-1-GLYCERO-PHOSPHORYLCHOLINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10646" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12841" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12847" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14343" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16870" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26697" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41458" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:55397" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:76433" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00670" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D07349" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM367" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00507" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="C34H52N6O19" hasOnlySubstanceUnits="false" id="M_anhgm3p_p" metaid="M_anhgm3p_p"
-      name="N-Acetyl-D-glucosamine(anhydrous)N-Acetylmuramyl-tripeptide">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_anhgm3p_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/anhgm3p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2155" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM63489" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15397" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C29H44N6O15" hasOnlySubstanceUnits="false" id="M_anhm4p_c" metaid="M_anhm4p_c"
-      name="1,6-anhydrous-N-Acetylmuramyl-tetrapeptide">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_anhm4p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/anhm4p" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM5405" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15401" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="C55H89O4P" hasOnlySubstanceUnits="false" id="M_udcpp_p" metaid="M_udcpp_p"
-      name="Undecaprenyl phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_udcpp_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/udcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:UNDECAPRENYL-P" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15285" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15286" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16141" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57654" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9864" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00348" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMPR03020006" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM251" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00286" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="2" fbc:chemicalFormula="Mg" hasOnlySubstanceUnits="false" id="M_mg2_p" metaid="M_mg2_p" name="Magnesium">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_mg2_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/mg2" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13379" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18420" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25112" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:39127" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49736" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6635" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00547" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00305" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C07755" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C07876" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C12567" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00731" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D01167" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM653" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00254" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="CHN" hasOnlySubstanceUnits="false" id="M_cyan_p" metaid="M_cyan_p"
-      name="Hydrogen cyanide">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cyan_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cyan" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-13584" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:HCN" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13362" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14038" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17514" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18407" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:36856" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:3969" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41780" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5786" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB60292" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00177" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01326" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C18673" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM254" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00150" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd19012" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C3H3O3S" hasOnlySubstanceUnits="false" id="M_mercppyr_c" metaid="M_mercppyr_c"
-      name="Mercaptopyruvate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_mercppyr_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/mercppyr" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:3-MERCAPTO-PYRUVATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11847" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14583" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16208" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20103" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20104" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57678" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6767" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01368" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00957" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1214" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00706" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="C15H22N2O17P2" hasOnlySubstanceUnits="false" id="M_udpg_p" metaid="M_udpg_p"
-      name="UDPglucose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_udpg_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/udpg" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-12575" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13498" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13505" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18066" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22103" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27234" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28532" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42885" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46228" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46229" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:52249" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58367" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58885" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9845" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9895" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00029" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.glycan/G10608" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM52" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00026" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd28293" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="2" fbc:chemicalFormula="C10H10NO6Fe" hasOnlySubstanceUnits="false" id="M_fe3dhbzs_e" metaid="M_fe3dhbzs_e"
-      name="Ferric 2,3-dihydroxybenzoylserine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_fe3dhbzs_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/fe3dhbzs" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM5748" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15460" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C25H43N2O8PRS" hasOnlySubstanceUnits="false" id="M_t3c7mrseACP_c"
-      metaid="M_t3c7mrseACP_c" name="Trans-3-cis-7-myristoleoyl-[acyl-carrier protein]">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_t3c7mrseACP_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/t3c7mrseACP" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM5960" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15570" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C29H51N2O8PRS" hasOnlySubstanceUnits="false" id="M_t3c11vaceACP_c"
-      metaid="M_t3c11vaceACP_c" name="Trans-3-cis-11-vacceoyl-[acyl-carrier protein]">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_t3c11vaceACP_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/t3c11vaceACP" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM5958" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15568" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C42H82O10P1" hasOnlySubstanceUnits="false" id="M_pg180_c" metaid="M_pg180_c"
-      name="Phosphatidylglycerol (dioctadecanoyl, n-C18:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pg180_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pg180" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-12822" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB10602" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMGP04010038" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM75102" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15540" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd23600" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C21H44NO7P1" hasOnlySubstanceUnits="false" id="M_1agpe160_p" metaid="M_1agpe160_p"
-      name="1-Acyl-sn-glycero-3-phosphoethanolamine (n-C16:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_1agpe160_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/1agpe160" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-8353" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:73004" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:73134" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB11503" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMGP02050002" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM32511" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd25195" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C16H27N2O14P" hasOnlySubstanceUnits="false" id="M_chtbs6p_c" metaid="M_chtbs6p_c"
-      name="Diacetylchitobiose-6-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_chtbs6p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/chtbs6p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DIACETYLCHITOBIOSE-6-PHOSPHATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:64883" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:64897" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C21152" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM11353" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd26854" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C7H12O6" hasOnlySubstanceUnits="false" id="M_quin_p" metaid="M_quin_p" name="Quinate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_quin_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/quin" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:QUINATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15000" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17521" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26489" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26492" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29751" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8715" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00296" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM474" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00248" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-2" fbc:chemicalFormula="O3Se" hasOnlySubstanceUnits="false" id="M_slnt_e" metaid="M_slnt_e" name="Selenite">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_slnt_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/slnt" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:SELENITE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15077" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18212" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26642" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29924" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9090" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB11119" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05684" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D05814" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D10530" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1157" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03387" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C1O2X" hasOnlySubstanceUnits="false" id="M_moadcoo_c" metaid="M_moadcoo_c"
-      name="MoaD Protein with carboxylate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_moadcoo_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/moadcoo" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM148353" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="F" hasOnlySubstanceUnits="false" id="M_f_c" metaid="M_f_c" name="Fluoride">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_f_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/f" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C7H10O5" hasOnlySubstanceUnits="false" id="M_3c2hmp_c" metaid="M_3c2hmp_c"
-      name="3-Carboxy-2-hydroxy-4-methylpentanoate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_3c2hmp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/3c2hmp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:2-D-THREO-HYDROXY-3-CARBOXY-ISOCAPROATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11760" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11843" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15592" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1565" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20094" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35114" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35120" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35121" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35122" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43465" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43468" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB12156" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C04411" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM891" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02693" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C3H6NO6P" hasOnlySubstanceUnits="false" id="M_pser__L_c" metaid="M_pser__L_c"
-      name="O-Phospho-L-serine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pser__L_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pser__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:3-P-SERINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12718" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15811" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21966" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57524" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7692" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00272" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01005" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM379" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00738" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C4H9NO2" hasOnlySubstanceUnits="false" id="M_4abut_c" metaid="M_4abut_c"
-      name="4-Aminobutanoate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_4abut_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/4abut" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:4-AMINO-BUTYRATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11961" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16865" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1786" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:193777" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20317" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20318" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30566" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40483" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:59888" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00112" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00334" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00058" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01100039" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM192" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00281" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C10H12N5O8P" hasOnlySubstanceUnits="false" id="M_gmp_c" metaid="M_gmp_c"
-      name="GMP C10H12N5O8P">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_gmp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/gmp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GMP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13341" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14381" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17345" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24449" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24450" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29058" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40119" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42615" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42647" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42831" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42887" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42892" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42979" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:47450" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5228" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58115" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00144" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM113" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00126" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H5N5O" hasOnlySubstanceUnits="false" id="M_gua_c" metaid="M_gua_c" name="Guanine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_gua_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/gua" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GUANINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14371" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14372" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16235" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24443" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42948" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5563" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00132" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00242" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM259" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00207" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C55H89O7P2" hasOnlySubstanceUnits="false" id="M_udcpdp_c" metaid="M_udcpdp_c"
-      name="Undecaprenyl diphosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_udcpdp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/udcpdp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-9649" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15284" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17047" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27192" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:53042" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57995" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9863" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01469" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMPR03030004" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM5043" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd25775" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C5H8NO4" hasOnlySubstanceUnits="false" id="M_glu__D_c" metaid="M_glu__D_c"
-      name="D-Glutamate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_glu__D_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/glu__D" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-GLT" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12979" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15966" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21022" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21023" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29986" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29989" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4183" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03339" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00217" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM331" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00186" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C47H69O3" hasOnlySubstanceUnits="false" id="M_3ophb_c" metaid="M_3ophb_c"
-      name="3-Octaprenyl-4-hydroxybenzoate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_3ophb_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/3ophb" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:3-OCTAPRENYL-4-HYDROXYBENZOATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1617" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:50116" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05809" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2195" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03443" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C7H7O5" hasOnlySubstanceUnits="false" id="M_3dhsk_c" metaid="M_3dhsk_c"
-      name="3-Dehydroshikimate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_3dhsk_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/3dhsk" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:3-DEHYDRO-SHIKIMATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11782" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12123" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1488" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16630" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17841" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19998" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19999" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2052" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20566" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30918" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42005" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C02637" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM611" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01716" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C13H23N2O8PRS" hasOnlySubstanceUnits="false" id="M_acACP_c" metaid="M_acACP_c"
-      name="Acetyl-ACP">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_acACP_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/acACP" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ACETYL-ACP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13713" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17093" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2409" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C03939" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1269" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd11494" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C15H22N2O17P2" hasOnlySubstanceUnits="false" id="M_udpgalfur_c" metaid="M_udpgalfur_c"
-      name="UDP-D-galacto-1,4-furanose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_udpgalfur_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/udpgalfur" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:UDP-D-GALACTO-14-FURANOSE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:66915" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:67118" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C03733" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2158" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02338" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="3" fbc:chemicalFormula="C30H27FeN3O15" hasOnlySubstanceUnits="false" id="M_feenter_p" metaid="M_feenter_p"
-      name="Fe-enterobactin">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_feenter_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/feenter" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21133" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28199" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:38151" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4993" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:70745" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06230" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM7354" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="C6H8O8" hasOnlySubstanceUnits="false" id="M_glcr_p" metaid="M_glcr_p"
-      name="D-Glucarate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_glcr_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/glcr" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-GLUCARATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12953" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16002" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20980" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20982" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30612" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:33801" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4155" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42731" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB29881" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00818" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01170108" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM744" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00609" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C12H22O11" hasOnlySubstanceUnits="false" id="M_tre_p" metaid="M_tre_p" name="Trehalose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_tre_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/tre" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-15990" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TREHALOSE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10202" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12281" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12284" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12287" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15251" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16551" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22365" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27082" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46211" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00975" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01083" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.glycan/G00293" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM198" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00794" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-2" fbc:chemicalFormula="C10H11N4O8P" hasOnlySubstanceUnits="false" id="M_imp_e" metaid="M_imp_e"
-      name="IMP C10H11N4O8P">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_imp_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/imp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:IMP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12057" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12063" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13372" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13373" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14457" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17202" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19271" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43418" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43475" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43524" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43528" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43563" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43611" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:47501" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58053" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5849" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00130" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM125" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00114" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="C25H46N6O8" hasOnlySubstanceUnits="false" id="M_feoxam_un_p" metaid="M_feoxam_un_p"
-      name="Ferroxamine minus Fe(3)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_feoxam_un_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/feoxam_un" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM90827" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15463" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-2" fbc:chemicalFormula="C6H11O9P" hasOnlySubstanceUnits="false" id="M_gal1p_e" metaid="M_gal1p_e"
-      name="Alpha-D-Galactose 1-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_gal1p_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/gal1p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GALACTOSE-1P" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10232" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12305" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12306" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17973" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22374" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42878" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58336" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00645" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03359" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00446" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM336" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00348" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd19025" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C8H13N2O5" hasOnlySubstanceUnits="false" id="M_LalaDglu_c" metaid="M_LalaDglu_c"
-      name="L-alanine-D-glutamate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_LalaDglu_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/LalaDglu" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2190" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61395" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61566" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C20957" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM3630" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15385" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C8H14O7" hasOnlySubstanceUnits="false" id="M_acglc__D_c" metaid="M_acglc__D_c"
-      name="6-Acetyl-D-glucose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_acglc__D_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/acglc__D" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-522" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12204" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17901" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20693" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2166" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:62111" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C02655" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM90521" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01726" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="C5H9O8P" hasOnlySubstanceUnits="false" id="M_r5p_p" metaid="M_r5p_p"
-      name="Alpha-D-Ribose 5-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_r5p_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/r5p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-15318" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10270" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12331" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18189" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22413" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C03736" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM15900" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd19028" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-2" fbc:chemicalFormula="C5H9O8P" hasOnlySubstanceUnits="false" id="M_r5p_e" metaid="M_r5p_e"
-      name="Alpha-D-Ribose 5-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_r5p_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/r5p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-15318" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10270" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12331" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18189" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22413" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C03736" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM15900" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd19028" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H9NO4" hasOnlySubstanceUnits="false" id="M_acser_e" metaid="M_acser_e"
-      name="O-Acetyl-L-serine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_acser_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/acser" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ACETYLSERINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12685" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12710" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12724" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17981" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21938" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44568" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58340" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7668" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03011" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00979" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM418" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00722" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="2" fbc:chemicalFormula="Mn" hasOnlySubstanceUnits="false" id="M_mn2_p" metaid="M_mn2_p" name="Manganese">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_mn2_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/mn2" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21435" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25156" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29035" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49749" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01333" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C19610" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2255" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00030" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd20863" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C27H51N2O9PRS" hasOnlySubstanceUnits="false" id="M_3hpalmACP_c" metaid="M_3hpalmACP_c"
-      name="R-3-hydroxypalmitoyl-[acyl-carrier protein]">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_3hpalmACP_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/3hpalmACP" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C04633" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2576" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd11481" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C31H60O5" hasOnlySubstanceUnits="false" id="M_12dgr140_c" metaid="M_12dgr140_c"
-      name="1,2-Diacyl-sn-glycerol (ditetradecanoyl, n-C14:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_12dgr140_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/12dgr140" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM146479" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C54H98O11P" hasOnlySubstanceUnits="false" id="M_apg161_c" metaid="M_apg161_c"
-      name="Acyl phosphatidylglycerol (n-C16:1)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_apg161_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/apg161" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM7021" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-2" fbc:chemicalFormula="C4H4O6" hasOnlySubstanceUnits="false" id="M_tartr__D_e" metaid="M_tartr__D_e"
-      name="D-tartrate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_tartr__D_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/tartr__D" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-TARTRATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11077" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15672" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18806" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18807" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30927" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35399" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:446" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45873" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB29878" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C02107" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM7948" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd19018" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C5H6O5" hasOnlySubstanceUnits="false" id="M_r2hglut_c" metaid="M_r2hglut_c"
-      name="(R)-2-Hydroxyglutarate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_r2hglut_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/r2hglut" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C9H10N2O3" hasOnlySubstanceUnits="false" id="M_5phua_c" metaid="M_5phua_c"
-      name="Phenylureidoacetic acid">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_5phua_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/5phua" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-8" fbc:chemicalFormula="C40H36N4O16" hasOnlySubstanceUnits="false" id="M_uppg3_c" metaid="M_uppg3_c"
-      name="Uroporphyrinogen III">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_uppg3_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/uppg3" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:UROPORPHYRINOGEN-III" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15300" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15437" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27257" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57308" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9905" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01086" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01051" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM414" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00774" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C29H46N7O18P3S" hasOnlySubstanceUnits="false" id="M_3hocoa_c" metaid="M_3hocoa_c"
-      name="(S)-3-Hydroxyoctanoyl-CoA">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_3hocoa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/3hocoa" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18750" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18781" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27800" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28632" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:395" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:420" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:62617" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03940" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05266" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07050015" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07050160" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM766" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03120" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C87H139N7O23P2" hasOnlySubstanceUnits="false" id="M_uagmda_c" metaid="M_uagmda_c"
-      name="Undecaprenyl-diphospho-N-acetylmuramoyl-L-alanyl-D-glutamyl-meso-2,6-diaminopimeloyl-D-alanyl-D-alanine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_uagmda_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/uagmda" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:C5" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61387" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61543" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05897" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.glycan/G10556" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2264" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03494" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C6H9N3O2" hasOnlySubstanceUnits="false" id="M_his__L_e" metaid="M_his__L_e"
-      name="L-Histidine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_his__L_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/his__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:HIS" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13117" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15971" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21324" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24598" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27570" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32510" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32511" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32512" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32513" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32529" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32530" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32531" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32532" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43048" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43114" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43118" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43190" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43239" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5733" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57595" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6240" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00177" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03412" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00135" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00768" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00032" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM134" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00119" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00572" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H4N4O" hasOnlySubstanceUnits="false" id="M_hxan_e" metaid="M_hxan_e"
-      name="Hypoxanthine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_hxan_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/hxan" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:HYPOXANTHINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14431" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17368" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24762" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43237" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5841" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00157" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00262" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM213" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00226" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="1" fbc:chemicalFormula="Na" hasOnlySubstanceUnits="false" id="M_na1_e" metaid="M_na1_e" name="Sodium">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_na1_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/na1" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2422" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:NACL" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:NaF" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26717" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29101" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49766" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9175" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00588" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01330" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C14042" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D04874" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM27" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00971" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-2" fbc:chemicalFormula="C17H19N4O9P" hasOnlySubstanceUnits="false" id="M_fmn_e" metaid="M_fmn_e"
-      name="FMN C17H19N4O9P">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_fmn_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/fmn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:FMN" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13317" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17621" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21127" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42587" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4960" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58210" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00061" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM119" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00050" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-2" fbc:chemicalFormula="C3H7O6P" hasOnlySubstanceUnits="false" id="M_glyc3p_e" metaid="M_glyc3p_e"
-      name="Glycerol 3-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_glyc3p_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/glyc3p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLYCEROL-3P" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10648" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12843" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12848" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15978" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26705" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42793" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57597" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00093" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM66" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00080" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C9H7O3" hasOnlySubstanceUnits="false" id="M_3hcinnm_c" metaid="M_3hcinnm_c"
-      name="3-hydroxycinnamic acid">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_3hcinnm_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/3hcinnm" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-10797" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32357" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:47925" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:47927" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:47928" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62774" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C12621" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1799" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd09252" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C18H27N3O15P2" hasOnlySubstanceUnits="false" id="M_dtdp4aaddg_c" metaid="M_dtdp4aaddg_c"
-      name="DTDP-4-acetamido-4,6-dideoxy-D-galactose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dtdp4aaddg_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dtdp4aaddg" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TDP-FUC4NAC" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61562" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61661" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:68493" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:68518" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB12222" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C20415" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM3015" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15454" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C30H52O26" hasOnlySubstanceUnits="false" id="M_maltpt_c" metaid="M_maltpt_c"
-      name="Maltopentaose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_maltpt_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/maltpt" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:MALTOPENTAOSE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61952" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:62006" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB12254" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.glycan/G00343" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1538" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15495" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C24H42O21" hasOnlySubstanceUnits="false" id="M_maltttr_c" metaid="M_maltttr_c"
-      name="Maltotetraose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_maltttr_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/maltttr" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-13205" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2595" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:MALTOTETRAOSE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25145" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28460" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44299" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61988" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:62974" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6671" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01296" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C02013" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C02052" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.glycan/G00459" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM5663" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01376" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01399" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C9H12N2O5" hasOnlySubstanceUnits="false" id="M_duri_p" metaid="M_duri_p"
-      name="Deoxyuridine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_duri_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/duri" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DEOXYURIDINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11398" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11572" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14123" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16450" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19261" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23640" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29113" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42178" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4434" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46165" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46289" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46293" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00012" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00526" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM492" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00412" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="C4H4O6" hasOnlySubstanceUnits="false" id="M_tartr__L_p" metaid="M_tartr__L_p"
-      name="L-tartrate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_tartr__L_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/tartr__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TARTRATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10961" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11018" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15193" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15671" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18710" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18711" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26849" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30924" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35397" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35398" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:358" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45866" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00956" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00898" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00103" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM816" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00666" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C7H14N2O4" hasOnlySubstanceUnits="false" id="M_26dap__M_p" metaid="M_26dap__M_p"
-      name="Meso-2,6-Diaminoheptanedioate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_26dap__M_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/26dap__M" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:MESO-DIAMINOPIMELATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10598" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12822" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12823" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12825" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16488" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25203" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25204" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30308" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40838" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57791" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00680" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM529" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00516" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C72H100CoN18O17P" hasOnlySubstanceUnits="false" id="M_adocbl_p" metaid="M_adocbl_p"
-      name="Adenosylcobalamin">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_adocbl_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/adocbl" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ADENOSYLCOBALAMIN" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02086" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00194" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00042" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM90703" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00166" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-9" fbc:chemicalFormula="C181H314N3O103P4" hasOnlySubstanceUnits="false" id="M_acolipa_p" metaid="M_acolipa_p"
-      name="4-Amino-4-deoxy-L-arabinose modified core oligosaccharide lipid A">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_acolipa_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/acolipa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2293" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM37330" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15392" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C4H9O3S" hasOnlySubstanceUnits="false" id="M_butso3_p" metaid="M_butso3_p"
-      name="Butanesulfonate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_butso3_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/butso3" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM7138" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd11596" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C35H52N6O13" hasOnlySubstanceUnits="false" id="M_cpgn_un_c" metaid="M_cpgn_un_c"
-      name="Coprogen unloaded (no Fe(III))">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cpgn_un_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cpgn_un" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2262" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2999" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15438" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C38H69N1O10P1" hasOnlySubstanceUnits="false" id="M_ps161_c" metaid="M_ps161_c"
-      name="Phosphatidylserine (dihexadec-9-enoyl, n-C16:1)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ps161_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ps161" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM7660" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C7H12N2O3" hasOnlySubstanceUnits="false" id="M_progly_p" metaid="M_progly_p"
-      name="L-Prolinylglycine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_progly_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/progly" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2182" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61695" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61696" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:73594" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM7481" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15551" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="C39H71O8P1" hasOnlySubstanceUnits="false" id="M_pa181_p" metaid="M_pa181_p"
-      name="1,2-dioctadec-11-enoyl-sn-glycerol 3-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pa181_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pa181" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM90511" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15527" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C21H44NO7P1" hasOnlySubstanceUnits="false" id="M_2agpe160_p" metaid="M_2agpe160_p"
-      name="2-Acyl-sn-glycero-3-phosphoethanolamine (n-C16:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2agpe160_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2agpe160" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2177" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:131743" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:132926" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB11473" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMGP02050036" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM34810" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15339" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd26438" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C20H40O9P1" hasOnlySubstanceUnits="false" id="M_2agpg140_c" metaid="M_2agpg140_c"
-      name="2-Acyl-sn-glycero-3-phosphoglycerol (n-C14:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2agpg140_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2agpg140" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2173" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM34739" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd26437" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="C19H37O7P1" hasOnlySubstanceUnits="false" id="M_1hdecg3p_p" metaid="M_1hdecg3p_p"
-      name="1-hexadecanoyl-sn-glycerol 3-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_1hdecg3p_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/1hdecg3p" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM90586" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15327" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="C4H4O5" hasOnlySubstanceUnits="false" id="M_mal__D_p" metaid="M_mal__D_p"
-      name="D-Malate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_mal__D_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/mal__D" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-660" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11002" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15588" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18685" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18686" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30796" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:342" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42060" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44073" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB31518" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00497" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1608" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00386" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C6H9O7" hasOnlySubstanceUnits="false" id="M_5dglcn_p" metaid="M_5dglcn_p"
-      name="5-Dehydro-D-gluconate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_5dglcn_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/5dglcn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:5-DEHYDROGLUCONATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12120" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12121" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17426" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2051" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20564" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58143" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01062" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM963" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00781" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C12H16O7" hasOnlySubstanceUnits="false" id="M_arbt_e" metaid="M_arbt_e"
-      name="Arbutin C12H16O7">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_arbt_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/arbt" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:HYDROQUINONE-O-BETA-D-GLUCOPYRANOSIDE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14417" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18305" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2806" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB29943" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06186" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2683" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03696" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C7H12O6" hasOnlySubstanceUnits="false" id="M_quin_c" metaid="M_quin_c" name="Quinate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_quin_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/quin" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:QUINATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15000" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17521" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26489" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26492" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29751" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8715" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00296" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM474" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00248" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="O4Se" hasOnlySubstanceUnits="false" id="M_sel_p" metaid="M_sel_p" name="Selenate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_sel_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/sel" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:SELENATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15075" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18170" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26624" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:33490" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9088" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62761" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05697" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2282" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03396" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C19H31N2O10PRS" hasOnlySubstanceUnits="false" id="M_epmeACP_c" metaid="M_epmeACP_c"
-      name="Enoylpimeloyl-[acyl-carrier protein] methyl ester">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_epmeACP_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/epmeACP" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:Enoylpimeloyl-ACP-methyl-esters" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C20378" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM11490" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd27021" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C19H22N8O15P2S2Mo" hasOnlySubstanceUnits="false" id="M_mococdp_c" metaid="M_mococdp_c"
-      name="Molybdopterin cytosine dinucleotide">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_mococdp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/mococdp" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25373" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43948" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43955" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:60536" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM62330" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C27H29NO11" hasOnlySubstanceUnits="false" id="M_doxrbcn_p" metaid="M_doxrbcn_p"
-      name="Doxorubicin">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_doxrbcn_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/doxrbcn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-13973" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22270" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2496" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28748" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42031" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:64816" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB15132" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01661" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D03899" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMPK13050001" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM37015" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01151" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C3H7NO2" hasOnlySubstanceUnits="false" id="M_ala__L_c" metaid="M_ala__L_c"
-      name="L-Alanine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ala__L_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ala__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:L-ALPHA-ALANINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13069" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:132498" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13748" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16449" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16977" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21216" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22277" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2539" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32431" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32432" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32439" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32440" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40734" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40735" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46308" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57972" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6171" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:66916" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:76050" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00161" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62251" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00041" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01401" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00012" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM32" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00035" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01003" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="CHO3" hasOnlySubstanceUnits="false" id="M_hco3_c" metaid="M_hco3_c" name="Bicarbonate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_hco3_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/hco3" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CO3" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:H2CO3" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:HCO3" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13351" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13363" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17544" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22863" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23017" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23744" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28976" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29201" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:3401" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40961" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41605" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41609" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5589" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00595" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03538" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB31453" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00288" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01353" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C12893" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM60" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00242" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C9H11NO2" hasOnlySubstanceUnits="false" id="M_phe__L_c" metaid="M_phe__L_c"
-      name="L-Phenylalanine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_phe__L_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/phe__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PHE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13151" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17295" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21370" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25984" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28044" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32486" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32487" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32504" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32505" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44851" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44885" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45079" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58095" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6282" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:76052" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8089" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00159" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00612" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00079" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C02057" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00021" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM97" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00066" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01400" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="2" fbc:chemicalFormula="C5H16N2" hasOnlySubstanceUnits="false" id="M_15dap_c" metaid="M_15dap_c"
-      name="1,5-Diaminopentane">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_15dap_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/15dap" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CADAVERINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13928" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18127" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22974" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:3288" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44370" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58384" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02322" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01672" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM943" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01155" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C3H7NO3" hasOnlySubstanceUnits="false" id="M_ser__D_c" metaid="M_ser__D_c"
-      name="D-Serine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ser__D_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ser__D" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-SERINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13019" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:143888" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16523" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21090" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32840" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32841" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35247" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42262" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4245" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03406" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00740" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM694" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00550" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C20H21N7O6" hasOnlySubstanceUnits="false" id="M_mlthf_c" metaid="M_mlthf_c"
-      name="5,10-Methylenetetrahydrofolate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_mlthf_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/mlthf" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:METHYLENE-THF" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10925" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15636" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18602" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1989" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00143" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM183" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00125" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C15H25O7P2" hasOnlySubstanceUnits="false" id="M_frdp_c" metaid="M_frdp_c"
-      name="Farnesyl diphosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_frdp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/frdp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:FARNESYL-PP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10700" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11488" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11491" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12854" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12874" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14231" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17407" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:175763" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19789" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24016" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42496" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:50277" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00961" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB04201" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00448" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMPR0103010002" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM34" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00350" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C6H11O4" hasOnlySubstanceUnits="false" id="M_pant__R_c" metaid="M_pant__R_c"
-      name="(R)-Pantoate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pant__R_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pant__R" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:L-PANTOATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11006" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14737" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15980" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18695" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18696" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18697" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:350" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44662" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00522" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM593" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00408" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C6H9O7" hasOnlySubstanceUnits="false" id="M_glcur_c" metaid="M_glcur_c"
-      name="D-Glucuronate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_glcur_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/glcur" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-Glucopyranuronate" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12975" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15748" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21013" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24297" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24298" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4178" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:47952" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58720" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00191" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM241" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00164" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C6H12O6" hasOnlySubstanceUnits="false" id="M_inost_e" metaid="M_inost_e"
-      name="Myo-Inositol">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_inost_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/inost" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-8052" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:MYO-INOSITOL" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10601" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12826" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12831" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17268" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19183" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24848" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25451" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27372" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4200" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43559" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:52772" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00211" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02256" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB34220" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00137" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C19891" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D08079" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM127" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00121" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd21131" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C9H13N3O5" hasOnlySubstanceUnits="false" id="M_cytd_e" metaid="M_cytd_e" name="Cytidine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cytd_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cytd" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CYTIDINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14063" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17562" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23515" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4053" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41649" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41686" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41704" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41709" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00089" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00475" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D07769" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM338" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00367" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C50H72O2" hasOnlySubstanceUnits="false" id="M_2dmmql8_c" metaid="M_2dmmql8_c"
-      name="2-Demethylmenaquinol 8">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2dmmql8_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2dmmql8" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-12115" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61873" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM558" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H14NO6P" hasOnlySubstanceUnits="false" id="M_g3pe_c" metaid="M_g3pe_c"
-      name="Sn-Glycero-3-phosphoethanolamine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_g3pe_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/g3pe" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:L-1-GLYCEROPHOSPHORYLETHANOL-AMINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10647" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12842" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16929" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26699" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57952" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB59660" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01233" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM368" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00908" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-1" fbc:chemicalFormula="C2H3O3" hasOnlySubstanceUnits="false" id="M_glyclt_e" metaid="M_glyclt_e"
-      name="Glycolate C2H3O3">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_glyclt_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/glyclt" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLYCOLLATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14348" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17497" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24388" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24390" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29805" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42865" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5475" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00115" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03035" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00160" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM222" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00139" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd12347" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C3H8O2" hasOnlySubstanceUnits="false" id="M_12ppd__S_e" metaid="M_12ppd__S_e"
-      name="(S)-Propane-1,2-diol">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_12ppd__S_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/12ppd__S" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PROPANE-1-2-DIOL" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18799" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29002" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:440" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45065" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06213" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C02917" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1255" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd19024" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C5H6NO2" hasOnlySubstanceUnits="false" id="M_1pyr5c_c" metaid="M_1pyr5c_c"
-      name="1-Pyrroline-5-carboxylate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_1pyr5c_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/1pyr5c" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:L-DELTA1-PYRROLINE_5-CARBOXYLATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11297" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11689" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12409" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1372" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15893" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17388" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18727" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19095" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19873" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26458" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29066" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:371" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01301" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02240" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C03912" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C04322" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1617" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02431" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02651" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd29655" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-1" fbc:chemicalFormula="C3H5O2" hasOnlySubstanceUnits="false" id="M_ppa_e" metaid="M_ppa_e"
-      name="Propionate (n-C3:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ppa_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ppa" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM162260" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C11H18NO8" hasOnlySubstanceUnits="false" id="M_acmum_p" metaid="M_acmum_p"
-      name="N-Acetylmuramate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_acmum_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/acmum" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:NACMUR" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21615" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28881" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:47965" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:47978" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7212" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB60493" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C02713" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2263" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01757" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C18H32O16" hasOnlySubstanceUnits="false" id="M_malttr_p" metaid="M_malttr_p"
-      name="Maltotriose C18H32O16">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_malttr_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/malttr" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:MALTOTRIOSE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25146" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27931" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43937" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61993" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6672" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01262" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01835" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM468" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01262" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C2H4O" hasOnlySubstanceUnits="false" id="M_acald_p" metaid="M_acald_p"
-      name="Acetaldehyde">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_acald_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/acald" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ACETALD" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13703" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15343" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22158" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2383" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40533" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00990" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00084" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM75" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00071" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C2H5NO2" hasOnlySubstanceUnits="false" id="M_gly_p" metaid="M_gly_p" name="Glycine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_gly_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/gly" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLY" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10792" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:132194" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14344" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15428" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24368" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32507" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32508" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42964" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5460" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57305" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00123" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00037" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00011" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM29" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00033" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C3H7NO3" hasOnlySubstanceUnits="false" id="M_ser__D_p" metaid="M_ser__D_p"
-      name="D-Serine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ser__D_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ser__D" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-SERINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13019" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:143888" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16523" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21090" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32840" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32841" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35247" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42262" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4245" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03406" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00740" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM694" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00550" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="O2" hasOnlySubstanceUnits="false" id="M_o2s_p" metaid="M_o2s_p" name="Superoxide anion">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_o2s_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/o2s" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:SUPER-OXIDE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15143" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18421" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25935" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26839" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30492" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7710" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02168" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00704" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM330" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C9H10N2O8P" hasOnlySubstanceUnits="false" id="M_23cump_p" metaid="M_23cump_p"
-      name="2',3'-Cyclic UMP">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_23cump_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/23cump" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-3725" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19215" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28637" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:60873" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:826" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C02355" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM3150" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01572" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C15H21N3O16P2" hasOnlySubstanceUnits="false" id="M_udpLa4fn_c" metaid="M_udpLa4fn_c"
-      name="Uridine 5''-diphospho-{beta}-4-deoxy-4-formamido-L-arabinose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_udpLa4fn_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/udpLa4fn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:UDP-L-ARA4-FORMYL-N" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:47027" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58709" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C16154" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1390" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd14875" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-2" fbc:chemicalFormula="C17H25N3O17P2" hasOnlySubstanceUnits="false" id="M_uacgam_e" metaid="M_uacgam_e"
-      name="UDP-N-acetyl-D-glucosamine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_uacgam_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/uacgam" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:UDP-N-ACETYL-D-GLUCOSAMINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13456" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13473" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13475" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13476" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16264" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22115" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46243" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46287" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57705" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9823" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62760" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00043" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.glycan/G10610" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMSL01010002" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM47" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00037" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C29H55N2O8PRS" hasOnlySubstanceUnits="false" id="M_ocdcaACP_c" metaid="M_ocdcaACP_c"
-      name="Octadecanoyl-ACP (n-C18:0ACP)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ocdcaACP_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ocdcaACP" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM3075" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C38H74O10P1" hasOnlySubstanceUnits="false" id="M_pg160_c" metaid="M_pg160_c"
-      name="Phosphatidylglycerol (dihexadecanoyl, n-C16:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pg160_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pg160" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-8260" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:72829" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:73205" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:75159" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB10570" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMGP04010986" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM32179" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15538" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd25117" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C27H52O5" hasOnlySubstanceUnits="false" id="M_12dgr120_c" metaid="M_12dgr120_c"
-      name="1,2-Diacyl-sn-glycerol (didodecanoyl, n-C12:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_12dgr120_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/12dgr120" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM4939" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="C35H67O8P1" hasOnlySubstanceUnits="false" id="M_pa160_p" metaid="M_pa160_p"
-      name="1,2-dihexadecanoyl-sn-glycerol 3-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pa160_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pa160" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-1422" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:72859" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:73246" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00674" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB07857" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMGP10010027" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM17312" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15524" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd26147" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C21H40O7P1" hasOnlySubstanceUnits="false" id="M_2odec11eg3p_c" metaid="M_2odec11eg3p_c"
-      name="2-octadec-11-enoyl-sn-glycerol 3-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2odec11eg3p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2odec11eg3p" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM5480" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15357" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C3H8O2" hasOnlySubstanceUnits="false" id="M_12ppd__R_p" metaid="M_12ppd__R_p"
-      name="(R)-Propane-1,2-diol">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_12ppd__R_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/12ppd__R" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-8891" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18705" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28972" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:352" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44863" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C02912" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM90191" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01861" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="C6H11O9P" hasOnlySubstanceUnits="false" id="M_f6p_p" metaid="M_f6p_p"
-      name="D-Fructose 6-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_f6p_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/f6p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:FRUCTOSE-6P" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10375" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12352" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16084" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22768" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42378" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57634" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03971" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05345" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM89621" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd19035" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-6" fbc:chemicalFormula="C84H148N2O37P2" hasOnlySubstanceUnits="false" id="M_kdo2lipid4_e"
-      metaid="M_kdo2lipid4_e" name="KDO(2)-lipid IV(A)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_kdo2lipid4_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/kdo2lipid4" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:KDO2-LIPID-IVA" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23657" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28526" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4477" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:60365" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06025" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.glycan/G11160" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMSL02000003" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM824" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03586" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C20H23N10O15P2" hasOnlySubstanceUnits="false" id="M_5pg35pg_c" metaid="M_5pg35pg_c"
-      name="5-Phosphoguanylyl(3-&gt;5)guanosine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_5pg35pg_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/5pg35pg" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:L-DI-GMP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48622" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58754" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C18076" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM4772" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd18057" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H4N4O3" hasOnlySubstanceUnits="false" id="M_urate_p" metaid="M_urate_p"
-      name="Urate C5H4N4O3">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_urate_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/urate" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-15041" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-15332" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:URATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15290" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17775" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27216" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27226" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30848" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46455" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46811" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46814" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46817" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46818" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46820" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46821" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46822" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46823" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46824" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46825" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46826" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49051" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:62585" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:62589" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9885" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00289" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00366" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM441" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00300" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="H2O" hasOnlySubstanceUnits="false" id="M_h2o_c" metaid="M_h2o_c" name="H2O H2O">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_h2o_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/h2o" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-15815" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:HYDROXYL-GROUP" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:OH" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:OXONIUM" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:WATER" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10743" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13352" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13365" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13419" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15377" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16234" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27313" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29356" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29373" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29374" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29375" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29412" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30490" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:33806" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:33811" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:33813" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41979" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41981" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42043" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42857" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43228" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44292" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44641" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44701" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44819" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5585" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5594" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02111" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00001" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01328" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C18714" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00001" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D03703" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D06322" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00001" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15275" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd27222" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C3H7NO2" hasOnlySubstanceUnits="false" id="M_ala__D_c" metaid="M_ala__D_c"
-      name="D-Alanine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ala__D_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ala__D" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-ALANINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10840" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12899" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15570" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20893" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32435" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32436" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4087" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41756" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41798" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41848" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41877" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57416" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01310" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00133" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM156" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00117" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C5H7O4" hasOnlySubstanceUnits="false" id="M_alac__S_c" metaid="M_alac__S_c"
-      name="(S)-2-Acetolactate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_alac__S_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/alac__S" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:2-ACETO-LACTATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11033" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18409" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18731" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:374" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58476" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06855" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06010" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01050460" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM114079" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd19047" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C9H12N3O10P2" hasOnlySubstanceUnits="false" id="M_dcdp_c" metaid="M_dcdp_c"
-      name="DCDP C9H12N3O10P2">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dcdp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dcdp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DCDP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10492" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19241" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28846" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49966" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58593" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01245" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00705" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM411" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00533" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C4H7O6P" hasOnlySubstanceUnits="false" id="M_db4p_c" metaid="M_db4p_c"
-      name="3,4-dihydroxy-2-butanone 4-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_db4p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/db4p" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:50606" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C15556" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2323" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd11225" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C11H14N2O8P" hasOnlySubstanceUnits="false" id="M_nmn_c" metaid="M_nmn_c"
-      name="NMN C11H14N2O8P">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_nmn_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/nmn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:NICOTINAMIDE_NUCLEOTIDE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10433" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12397" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13409" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14646" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14647" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14648" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14649" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16171" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18201" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22850" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25522" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7557" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB59645" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00455" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM355" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00355" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C2H5NO2" hasOnlySubstanceUnits="false" id="M_gly_c" metaid="M_gly_c" name="Glycine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_gly_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/gly" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLY" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10792" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:132194" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14344" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15428" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24368" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32507" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32508" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42964" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5460" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57305" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00123" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00037" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00011" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM29" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00033" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="H2O2" hasOnlySubstanceUnits="false" id="M_h2o2_c" metaid="M_h2o2_c"
-      name="Hydrogen peroxide">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_h2o2_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/h2o2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:HYDROGEN-PEROXIDE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13354" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13355" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16240" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24637" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25940" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29192" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29370" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44782" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44785" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44812" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5586" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03125" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06491" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00027" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C17732" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C18566" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00008" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM22" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00025" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-5" fbc:chemicalFormula="C24H33N7O19P3S" hasOnlySubstanceUnits="false" id="M_malcoa_c" metaid="M_malcoa_c"
-      name="Malonyl CoA C24H33N7O19P3S">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_malcoa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/malcoa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:MALONYL-COA" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14565" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15531" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25135" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43979" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57384" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6661" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01175" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00083" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07050031" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07050345" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM40" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00070" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd12270" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H10O5" hasOnlySubstanceUnits="false" id="M_xyl__D_e" metaid="M_xyl__D_e"
-      name="D-Xylose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_xyl__D_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/xyl__D" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-Xylopyranose" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:53455" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:65327" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00098" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03763" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00181" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D06346" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM348" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00154" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-1" fbc:chemicalFormula="C6H11O7" hasOnlySubstanceUnits="false" id="M_galctn__D_e" metaid="M_galctn__D_e"
-      name="D-Galactonate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_galctn__D_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/galctn__D" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-GALACTONATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12931" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16534" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24148" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24149" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4132" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00565" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00880" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1734" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00653" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C17H21N4O9P" hasOnlySubstanceUnits="false" id="M_fmnh2_c" metaid="M_fmnh2_c"
-      name="Reduced FMN">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_fmnh2_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/fmnh2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:FMNH2" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13318" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:133886" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15017" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16048" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21128" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42517" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57618" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8782" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01142" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01847" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM208" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01270" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C6H12N2O3" hasOnlySubstanceUnits="false" id="M_alaala_c" metaid="M_alaala_c"
-      name="D-Alanyl-D-alanine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_alaala_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/alaala" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-ALA-D-ALA" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12900" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13749" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16576" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20894" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4088" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57822" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03459" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB28680" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00993" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM669" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00731" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="3" fbc:chemicalFormula="C7H22N3" hasOnlySubstanceUnits="false" id="M_spmd_p" metaid="M_spmd_p" name="Spermidine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_spmd_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/spmd" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:SPERMIDINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15095" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15097" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16610" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26732" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26733" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45647" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57834" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9218" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01257" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00315" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM124" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00264" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="2" fbc:chemicalFormula="Ni" hasOnlySubstanceUnits="false" id="M_ni2_p" metaid="M_ni2_p" name="Nickel">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ni2_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ni2" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25517" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49785" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49786" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02457" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C14711" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C19609" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM3673" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd20862" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="C10H11N4O9P" hasOnlySubstanceUnits="false" id="M_xmp_p" metaid="M_xmp_p"
-      name="Xanthosine 5'-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_xmp_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/xmp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:XANTHOSINE-5-PHOSPHATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10067" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10938" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15324" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15652" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27328" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57464" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62755" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00655" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM298" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00497" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C8H8O" hasOnlySubstanceUnits="false" id="M_pacald_e" metaid="M_pacald_e"
-      name="Phenylacetaldehyde">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pacald_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pacald" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PHENYLACETALDEHYDE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14778" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16424" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25972" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43163" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8084" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06236" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00601" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM473" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00464" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C19H29N2O12" hasOnlySubstanceUnits="false" id="M_anhgm_c" metaid="M_anhgm_c"
-      name="N-Acetyl-D-glucosamine(anhydrous)N-Acetylmuramic acid">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_anhgm_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/anhgm" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM3060" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15396" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C18H30N5O9" hasOnlySubstanceUnits="false" id="M_LalaDgluMdapDala_p"
-      metaid="M_LalaDgluMdapDala_p" name="L-alanine-D-glutamate-meso-2,6-diaminoheptanedioate-D-alanine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_LalaDgluMdapDala_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/LalaDgluMdapDala" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM59271" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15387" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C77H125N1O22P2" hasOnlySubstanceUnits="false" id="M_garagund_c" metaid="M_garagund_c"
-      name="Glucosyl-O-acetyl-rhamanosyl-N-acetylglucosamyl-undecaprenyl diphosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_garagund_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/garagund" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2215" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM55196" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15470" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="C157H255N3O82P2" hasOnlySubstanceUnits="false" id="M_o16a3und_p" metaid="M_o16a3und_p"
-      name="(O16 antigen)x3 undecaprenyl diphosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_o16a3und_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/o16a3und" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM31521" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15517" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="C2H2O5S" hasOnlySubstanceUnits="false" id="M_sulfac_p" metaid="M_sulfac_p"
-      name="Sulfoacetate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_sulfac_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/sulfac" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-10246" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:34987" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49876" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:50519" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58824" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C14179" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1949" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd09878" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="2" fbc:chemicalFormula="Cu" hasOnlySubstanceUnits="false" id="M_cu2_c" metaid="M_cu2_c" name="Copper">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cu2_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cu2" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20882" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23380" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29036" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49550" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00657" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00070" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM632" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00058" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-1" fbc:chemicalFormula="CNS" hasOnlySubstanceUnits="false" id="M_tcynt_e" metaid="M_tcynt_e" name="Thiocyanate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_tcynt_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/tcynt" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-19512" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:HSCN" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15234" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18022" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24926" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24928" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26954" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26956" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29200" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45576" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9550" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01453" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01755" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM762" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01211" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C36H62O31" hasOnlySubstanceUnits="false" id="M_14glucan_c" metaid="M_14glucan_c"
-      name="1,4-alpha-D-glucan">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_14glucan_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/14glucan" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:1-4-alpha-D-Glucan" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2905" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd21754" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C48H83N3O15P2" hasOnlySubstanceUnits="false" id="M_cdpdodec11eg_c"
-      metaid="M_cdpdodec11eg_c" name="CDP-1,2-dioctadec-11-enoylglycerol">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cdpdodec11eg_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cdpdodec11eg" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:104362" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM4509" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15420" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-3" fbc:chemicalFormula="C30H57O13P2" hasOnlySubstanceUnits="false" id="M_pgp120_p" metaid="M_pgp120_p"
-      name="Phosphatidylglycerophosphate (didodecanoyl, n-C12:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pgp120_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pgp120" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM5266" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C24H48O9P1" hasOnlySubstanceUnits="false" id="M_1agpg180_p" metaid="M_1agpg180_p"
-      name="1-Acyl-sn-glycero-3-phosphoglycerol (n-C18:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_1agpg180_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/1agpg180" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2140" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:72827" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:73091" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMGP04050009" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM6607" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd26428" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="1" fbc:chemicalFormula="C12H25N2O7" hasOnlySubstanceUnits="false" id="M_psclys_c" metaid="M_psclys_c"
-      name="Psicoselysine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_psclys_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/psclys" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PSICOSELYSINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61403" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61425" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM6409" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15559" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-12" fbc:chemicalFormula="C176H303N2O103P5" hasOnlySubstanceUnits="false" id="M_colipap_e" metaid="M_colipap_e"
-      name="Core oligosaccharide lipid A diphosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_colipap_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/colipap" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM147454" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C2H2NO2" hasOnlySubstanceUnits="false" id="M_dhgly_c" metaid="M_dhgly_c"
-      name="Dehydroglycine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dhgly_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dhgly" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-12279" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:53647" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:53664" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:77846" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C15809" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1984" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd14545" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="1" fbc:chemicalFormula="C8H13OS2" hasOnlySubstanceUnits="false" id="M_lipopb_c" metaid="M_lipopb_c"
-      name="Lipoate (protein bound)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_lipopb_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/lipopb" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM147499" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C7H8O4" hasOnlySubstanceUnits="false" id="M_2ippm_c" metaid="M_2ippm_c"
-      name="2-Isopropylmaleate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2ippm_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2ippm" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-9451" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11604" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1179" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17275" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19668" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58085" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C02631" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1706" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01710" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C10H9O10P" hasOnlySubstanceUnits="false" id="M_3psme_c" metaid="M_3psme_c"
-      name="5-O-(1-Carboxyvinyl)-3-phosphoshikimate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_3psme_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/3psme" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:3-ENOLPYRUVYL-SHIKIMATE-5P" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12094" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12097" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16257" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20533" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2104" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57701" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01269" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1365" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00932" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C6H7N2O5P" hasOnlySubstanceUnits="false" id="M_imacp_c" metaid="M_imacp_c"
-      name="3-(Imidazol-4-yl)-2-oxopropyl phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_imacp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/imacp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:IMIDAZOLE-ACETOL-P" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11736" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1437" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16426" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19941" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57766" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB12236" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01267" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1456" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00930" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H4N4O2" hasOnlySubstanceUnits="false" id="M_xan_e" metaid="M_xan_e" name="Xanthine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_xan_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/xan" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:XANTHINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10059" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15318" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17712" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27317" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46377" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48517" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00292" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00385" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM174" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00309" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-1" fbc:chemicalFormula="C14H25O2" hasOnlySubstanceUnits="false" id="M_ttdcea_e" metaid="M_ttdcea_e"
-      name="Tetradecenoate (n-C14:1)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ttdcea_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ttdcea" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM641" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="1" fbc:chemicalFormula="C3H10N" hasOnlySubstanceUnits="false" id="M_tma_c" metaid="M_tma_c"
-      name="Trimethylamine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_tma_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/tma" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRIMETHYLAMINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15261" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18139" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27125" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27127" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58389" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9732" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00906" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00565" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM352" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00441" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C23H33N4O20P2" hasOnlySubstanceUnits="false" id="M_uama_c" metaid="M_uama_c"
-      name="UDP-N-acetylmuramoyl-L-alanine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_uama_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/uama" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-1456" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13459" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13478" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16932" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22123" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57953" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:83898" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:84726" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9830" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01212" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1953" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00890" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd29609" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C11H12N2O2" hasOnlySubstanceUnits="false" id="M_trp__L_p" metaid="M_trp__L_p"
-      name="L-Tryptophan">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_trp__L_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/trp__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13178" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16828" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:184633" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21407" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27163" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27897" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32702" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32704" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32727" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32728" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45988" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46086" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46125" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46225" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57912" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6310" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:64554" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9769" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00929" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB30396" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00078" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00806" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00020" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM94" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00065" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd19007" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C12H22O11" hasOnlySubstanceUnits="false" id="M_lcts_p" metaid="M_lcts_p"
-      name="Lactose C12H22O11">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_lcts_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/lcts" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-15971" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-15972" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10296" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10380" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10428" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14497" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17716" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22460" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22760" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22846" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25005" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27755" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27968" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28577" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35463" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:36218" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43665" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:613009" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB41627" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00243" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01970" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00046" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.glycan/G10504" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM362" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00208" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01354" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03809" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-1" fbc:chemicalFormula="C6H9O7" hasOnlySubstanceUnits="false" id="M_fruur_e" metaid="M_fruur_e"
-      name="D-Fructuronate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_fruur_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/fruur" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:FRUCTURONATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12927" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16849" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20936" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20937" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24112" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24113" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4126" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:47950" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:59863" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:59881" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00905" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1660" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00672" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd27042" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="1" fbc:chemicalFormula="C12H25N2O7" hasOnlySubstanceUnits="false" id="M_frulys_p" metaid="M_frulys_p"
-      name="Fructoselysine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_frulys_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/frulys" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:FRUCTOSELYSINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24109" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61393" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:63523" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C16488" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1742" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15466" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C37H62N7O17P3S" hasOnlySubstanceUnits="false" id="M_pmtcoa_c" metaid="M_pmtcoa_c"
-      name="Palmitoyl-CoA (n-C16:0CoA)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pmtcoa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pmtcoa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PALMITYL-COA" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14397" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14732" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15525" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24543" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57379" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7898" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01338" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB59623" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00154" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07050360" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM88" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00134" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-2" fbc:chemicalFormula="C9H11N2O8P" hasOnlySubstanceUnits="false" id="M_dump_e" metaid="M_dump_e"
-      name="DUMP C9H11N2O8P">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dump_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dump" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DUMP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10532" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14094" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17622" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19263" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:246422" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42245" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46286" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46288" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:47722" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01409" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00365" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM234" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00299" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="C10H12N5O7P" hasOnlySubstanceUnits="false" id="M_3amp_p" metaid="M_3amp_p"
-      name="3  AMP C10H12N5O7P">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_3amp_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/3amp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-3706" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1333" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22241" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28931" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40872" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:60880" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03540" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06550" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01367" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1985" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00988" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-11" fbc:chemicalFormula="C139H241N2O70P4" hasOnlySubstanceUnits="false" id="M_kphphhlipa_c"
-      metaid="M_kphphhlipa_c" name="Kdo-phospho-heptosyl-phospho-heptosyl-heptosyl-kdo2-lipidA">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_kphphhlipa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/kphphhlipa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2257" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM58984" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15492" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-11" fbc:chemicalFormula="C157H271N2O84P4" hasOnlySubstanceUnits="false" id="M_gagicolipa_c"
-      metaid="M_gagicolipa_c" name="Galactosyl-glucosyl-inner core oligosaccharide lipid A">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_gagicolipa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/gagicolipa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2258" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM54163" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15469" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="2" fbc:chemicalFormula="Hg" hasOnlySubstanceUnits="false" id="M_hg2_p" metaid="M_hg2_p"
-      name="Mercury  charged 2  Hg">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_hg2_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/hg2" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13370" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16793" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25199" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25200" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49640" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5714" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03625" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00703" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C13377" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C18670" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D01905" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1562" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00531" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C3H5NO3" hasOnlySubstanceUnits="false" id="M_2amsa_c" metaid="M_2amsa_c"
-      name="2-Aminomalonate semialdehyde">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2amsa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2amsa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:2-AMINOMALONATE-SEMIALDEHYDE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1020" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21210" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:37012" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58671" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:77662" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C11822" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2124" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd08626" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="X" hasOnlySubstanceUnits="false" id="M_dsbaox_p" metaid="M_dsbaox_p"
-      name="Periplasmic protein disulfide isomerase I (oxidized)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dsbaox_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dsbaox" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM97004" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15446" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="C35H63O8P1" hasOnlySubstanceUnits="false" id="M_pa161_p" metaid="M_pa161_p"
-      name="1,2-dihexadec-9-enoyl-sn-glycerol 3-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pa161_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pa161" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM90510" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15525" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="2" fbc:chemicalFormula="Ca" hasOnlySubstanceUnits="false" id="M_ca2_c" metaid="M_ca2_c" name="Calcium">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ca2_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ca2" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22988" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29108" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:3308" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:39123" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48760" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00464" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00076" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C08130" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C12277" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C13140" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C13189" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C17392" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C18381" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D01083" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D01679" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D01723" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM128" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00063" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd29674" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C6H11O7" hasOnlySubstanceUnits="false" id="M_galctn__L_p" metaid="M_galctn__L_p"
-      name="L-Galactonate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_galctn__L_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/galctn__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-1083" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:37425" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:53071" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C15930" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM636" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd14659" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="2" fbc:chemicalFormula="SFe2" hasOnlySubstanceUnits="false" id="M_2fe1s_c" metaid="M_2fe1s_c"
-      name="[2Fe-1S] desulfurated iron-sulfur cluster">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2fe1s_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2fe1s" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM147395" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="XH" hasOnlySubstanceUnits="false" id="M_flxso_c" metaid="M_flxso_c"
-      name="Flavodoxin semi oxidized">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_flxso_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/flxso" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM145809" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C6H12O6" hasOnlySubstanceUnits="false" id="M_gal_c" metaid="M_gal_c" name="D-Galactose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_gal_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/gal" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ALPHA-D-GALACTOSE" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-galactopyranose" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10231" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12936" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22373" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28061" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4139" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42741" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00143" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB05762" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00124" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00984" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D04291" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM390" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00108" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00724" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C4H8NO6P" hasOnlySubstanceUnits="false" id="M_phom_c" metaid="M_phom_c"
-      name="O-Phospho-L-homoserine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_phom_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/phom" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:O-PHOSPHO-L-HOMOSERINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12693" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12717" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15961" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21965" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57590" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7691" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62692" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01102" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1334" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00809" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C6H12O6" hasOnlySubstanceUnits="false" id="M_glc__D_e" metaid="M_glc__D_e"
-      name="D-Glucose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_glc__D_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/glc__D" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:Glucopyranose" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12965" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17634" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20999" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4167" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00122" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06564" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00031" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00009" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM41" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00027" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd26821" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C31H48N7O18P3S" hasOnlySubstanceUnits="false" id="M_3odcoa_c" metaid="M_3odcoa_c"
-      name="3-Oxodecanoyl-CoA">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_3odcoa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/3odcoa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2123" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1633" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20166" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28528" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:62548" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03939" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06349" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05265" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07050239" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM677" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03119" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C41H61N9O28P2" hasOnlySubstanceUnits="false" id="M_ugmda_c" metaid="M_ugmda_c"
-      name="UDP-N-acetylmuramoyl-L-alanyl-D-glutamyl-meso-2,6-diaminopimeloyl-D-alanyl-D-alanine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ugmda_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ugmda" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:C1" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13462" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18199" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22126" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61386" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9833" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C04882" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1954" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02932" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02968" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-2" fbc:chemicalFormula="MoO4" hasOnlySubstanceUnits="false" id="M_mobd_e" metaid="M_mobd_e" name="Molybdate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_mobd_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/mobd" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-3" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25368" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25371" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:36263" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:36264" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6967" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB12260" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06232" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C15455" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1026" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd11574" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="1" fbc:chemicalFormula="H4N" hasOnlySubstanceUnits="false" id="M_nh4_e" metaid="M_nh4_e" name="Ammonium">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_nh4_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/nh4" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:AMMONIA" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:AMMONIUM" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13405" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13406" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13407" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:135980" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13771" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16134" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22533" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22534" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28938" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29337" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29340" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44269" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44284" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44404" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49783" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7434" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7435" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00051" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB41827" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00014" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01342" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D02915" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D02916" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM15" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00013" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd19013" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C10H11N4O11P2" hasOnlySubstanceUnits="false" id="M_idp_c" metaid="M_idp_c"
-      name="IDP C10H11N4O11P2">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_idp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/idp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:IDP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13371" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17808" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19270" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43252" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58280" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5848" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03335" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00104" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM495" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00090" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C9H12N5O13P3" hasOnlySubstanceUnits="false" id="M_ahdt_c" metaid="M_ahdt_c"
-      name="2-Amino-4-hydroxy-6-(erythro-1,2,3-trihydroxypropyl)dihydropteridine triphosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ahdt_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ahdt" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DIHYDRONEOPTERIN-P3" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1002" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11509" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12201" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18372" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19455" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20684" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28069" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58462" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00980" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01144" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB12181" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C04895" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM397" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02978" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-1" fbc:chemicalFormula="C16H31O2" hasOnlySubstanceUnits="false" id="M_hdca_e" metaid="M_hdca_e"
-      name="Hexadecanoate (n-C16:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_hdca_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/hdca" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PALMITATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14730" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15756" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:231736" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:233028" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24540" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24541" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24542" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24550" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29889" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35978" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44952" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7896" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00220" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB60083" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00249" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D05341" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01010001" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01010046" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM108" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00214" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C9H9O4" hasOnlySubstanceUnits="false" id="M_cenchddd_c" metaid="M_cenchddd_c"
-      name="Cis-3-(3-carboxyethenyl)-3,5-cyclohexadiene-1,2-diol">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cenchddd_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cenchddd" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49071" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:60108" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61451" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61462" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C12622" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2161" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd09253" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C17H22N3O18P2" hasOnlySubstanceUnits="false" id="M_uacmamu_c" metaid="M_uacmamu_c"
-      name="UDP-N-acetyl-D-mannosaminouronate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_uacmamu_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/uacmamu" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:UDP-MANNACA" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22117" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28581" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58578" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:70731" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:70738" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9825" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06240" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM97052" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03732" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C27H42N7O17P3S" hasOnlySubstanceUnits="false" id="M_hxcoa_c" metaid="M_hxcoa_c"
-      name="Hexanoyl-CoA (n-C6:0CoA)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_hxcoa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/hxcoa" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM162502" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="CNO" hasOnlySubstanceUnits="false" id="M_cynt_p" metaid="M_cynt_p" name="Cyanate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cynt_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cynt" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-69" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14037" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23419" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23422" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28024" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29195" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29202" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:3968" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02078" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01417" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C19067" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1191" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01015" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C9H7O3" hasOnlySubstanceUnits="false" id="M_3hcinnm_p" metaid="M_3hcinnm_p"
-      name="3-hydroxycinnamic acid">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_3hcinnm_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/3hcinnm" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-10797" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32357" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:47925" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:47927" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:47928" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62774" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C12621" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1799" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd09252" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C4H4N2O2" hasOnlySubstanceUnits="false" id="M_ura_p" metaid="M_ura_p" name="Uracil">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ura_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ura" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:URACIL" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15288" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17568" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27210" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43254" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46375" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9882" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00300" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00106" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00027" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D09776" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM158" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00092" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="CH2O" hasOnlySubstanceUnits="false" id="M_fald_e" metaid="M_fald_e" name="Formaldehyde">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_fald_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/fald" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CARBONYL-GROUP" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:FORMALDEHYDE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14274" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16842" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24077" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:337763" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5142" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01426" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00067" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00017" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM56" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00055" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="C17H25N3O17P2" hasOnlySubstanceUnits="false" id="M_uacgam_p" metaid="M_uacgam_p"
-      name="UDP-N-acetyl-D-glucosamine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_uacgam_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/uacgam" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:UDP-N-ACETYL-D-GLUCOSAMINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13456" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13473" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13475" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13476" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16264" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22115" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46243" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46287" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57705" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9823" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62760" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00043" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.glycan/G10610" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMSL01010002" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM47" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00037" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-6" fbc:chemicalFormula="C120H186N24O63" hasOnlySubstanceUnits="false" id="M_murein5p5p5p_p"
-      metaid="M_murein5p5p5p_p" name="Three linked disacharide pentapeptide murein units (uncrosslinked, middle of chain)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_murein5p5p5p_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/murein5p5p5p" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM7807" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15512" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-4" fbc:chemicalFormula="C74H112N14O39" hasOnlySubstanceUnits="false" id="M_murein4px4p_p"
-      metaid="M_murein4px4p_p" name="Two disacharide linked murein units, tetrapeptide corsslinked tetrapeptide (A2pm-&gt;D-ala) (middle of chain)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_murein4px4p_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/murein4px4p" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM5316" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15506" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C25H45N2O8PRS" hasOnlySubstanceUnits="false" id="M_tmrs2eACP_c" metaid="M_tmrs2eACP_c"
-      name="Trans-Tetradec-2-enoyl-[acyl-carrier protein]">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_tmrs2eACP_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/tmrs2eACP" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:Tetradec-2-enoyl-ACPs" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10735" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05760" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07060018" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM24297" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd11467" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C41H82N1O8P1" hasOnlySubstanceUnits="false" id="M_pe180_c" metaid="M_pe180_c"
-      name="Phosphatidylethanolamine (dioctadecanoyl, n-C18:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pe180_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pe180" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-12818" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:39934" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44886" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:47765" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:47766" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB05327" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB08991" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMGP02010097" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM31536" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15533" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd23596" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C44H82O10P1" hasOnlySubstanceUnits="false" id="M_cpg180_c" metaid="M_cpg180_c"
-      name="Cyclopropane phosphatidylglycerol (dioctadec-11,12-cyclo-anoyl, n-C18:0 cyclo)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cpg180_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cpg180" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2217" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM48211" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15436" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd26448" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C30H58O10P1" hasOnlySubstanceUnits="false" id="M_pg120_p" metaid="M_pg120_p"
-      name="Phosphatidylglycerol (didodecanoyl, n-C12:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pg120_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pg120" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1771" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C19H36O7P1" hasOnlySubstanceUnits="false" id="M_2hdec9eg3p_c" metaid="M_2hdec9eg3p_c"
-      name="2-hexadec-9-enoyl-sn-glycerol 3-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2hdec9eg3p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2hdec9eg3p" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM5464" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15354" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="Cl" hasOnlySubstanceUnits="false" id="M_cl_c" metaid="M_cl_c" name="Chloride">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cl_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cl" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CL-" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:HCL" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13291" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13364" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13970" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17883" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17996" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24635" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:3616" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:3731" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48804" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:50315" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5590" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00492" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02073" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02162" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02306" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00698" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01327" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D02057" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM43" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00099" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C29H38N7O18P3S" hasOnlySubstanceUnits="false" id="M_2oxpaccoa_c" metaid="M_2oxpaccoa_c"
-      name="2-oxepin-2(3H)-ylideneacetyl-CoA">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2oxpaccoa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2oxpaccoa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2363" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:63251" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:63252" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C19975" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2851" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd21214" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C6H11O9P" hasOnlySubstanceUnits="false" id="M_g6p_c" metaid="M_g6p_c"
-      name="D-Glucose 6-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_g6p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/g6p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-glucopyranose-6-phosphate" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14314" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4170" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61548" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01401" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01549" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06793" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00092" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM160" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00079" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd26836" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="XH2" hasOnlySubstanceUnits="false" id="M_trdrd_c" metaid="M_trdrd_c"
-      name="Reduced thioredoxin">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_trdrd_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/trdrd" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:Red-Thioredoxin" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15033" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00342" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM96993" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd11421" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd28060" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C6H13O9P" hasOnlySubstanceUnits="false" id="M_mnl1p_c" metaid="M_mnl1p_c"
-      name="D-Mannitol 1-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_mnl1p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/mnl1p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:MANNITOL-1P" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12997" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16298" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21051" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4205" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61381" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01530" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00644" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM90126" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00491" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd27436" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="2" fbc:chemicalFormula="C5H16N4" hasOnlySubstanceUnits="false" id="M_agm_c" metaid="M_agm_c" name="Agmatine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_agm_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/agm" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:AGMATHINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13747" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17431" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18576" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2514" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40556" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58145" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01432" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB60259" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00179" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM328" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00152" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-5" fbc:chemicalFormula="C5H8O14P3" hasOnlySubstanceUnits="false" id="M_prpp_c" metaid="M_prpp_c"
-      name="5-Phospho-alpha-D-ribose 1-diphosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_prpp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/prpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PRPP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12159" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12160" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17111" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20625" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2121" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45139" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58017" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62643" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00119" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM91" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00103" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="1" fbc:chemicalFormula="C6H12N3O" hasOnlySubstanceUnits="false" id="M_histd_c" metaid="M_histd_c"
-      name="L-Histidinol">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_histd_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/histd" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:HISTIDINOL" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13118" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16255" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21326" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57699" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6241" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03431" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00860" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1281" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00641" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C5H3N2O4" hasOnlySubstanceUnits="false" id="M_orot_c" metaid="M_orot_c"
-      name="Orotate C5H3N2O4">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_orot_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/orot" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:OROTATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14698" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16742" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25719" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25720" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30839" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44781" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7787" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00226" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00295" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00055" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM235" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00247" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C10H12N5O6P" hasOnlySubstanceUnits="false" id="M_damp_c" metaid="M_damp_c"
-      name="DAMP C10H12N5O6P">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_damp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/damp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DAMP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10490" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14068" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17713" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19236" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40419" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40499" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40505" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40544" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40607" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40614" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41815" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41864" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41870" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58245" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00360" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM432" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00294" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C17H19N4O9P" hasOnlySubstanceUnits="false" id="M_fmn_c" metaid="M_fmn_c"
-      name="FMN C17H19N4O9P">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_fmn_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/fmn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:FMN" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13317" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17621" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21127" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42587" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4960" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58210" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00061" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM119" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00050" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C33H52N7O18P3S" hasOnlySubstanceUnits="false" id="M_3oddcoa_c" metaid="M_3oddcoa_c"
-      name="3-Oxododecanoyl-CoA">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_3oddcoa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/3oddcoa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2105" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1636" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20169" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27868" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:62615" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03937" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06350" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62368" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05263" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07050013" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07050247" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM705" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03117" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="R" hasOnlySubstanceUnits="false" id="M_trnaglu_c" metaid="M_trnaglu_c" name="TRNA (Glu)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_trnaglu_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/trnaglu" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLT-tRNAs" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10680" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15175" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29175" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01641" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM90886" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd11912" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C10H12N4O5" hasOnlySubstanceUnits="false" id="M_ins_e" metaid="M_ins_e" name="Inosine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ins_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ins" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:INOSINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14456" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17596" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24841" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44407" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5927" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00195" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00294" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00054" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM334" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00246" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C49H74O4" hasOnlySubstanceUnits="false" id="M_q8_c" metaid="M_q8_c" name="Ubiquinone-8">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_q8_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/q8" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:UBIQUINONE-8" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61683" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C17569" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMPR02010005" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM232" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15560" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="1" fbc:chemicalFormula="C5H13N2O2" hasOnlySubstanceUnits="false" id="M_orn_c" metaid="M_orn_c" name="Ornithine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_orn_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/orn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:L-ORNITHINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11448" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13148" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15729" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18257" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19370" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21367" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32964" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44667" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46911" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46912" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46913" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46914" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6280" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7784" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00214" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00818" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB04984" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62654" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62718" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00077" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01602" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D08302" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01100057" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM89689" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00064" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd19016" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C47H72O3" hasOnlySubstanceUnits="false" id="M_2ombzl_c" metaid="M_2ombzl_c"
-      name="2-Octaprenyl-6-methoxy-1,4-benzoquinol">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2ombzl_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2ombzl" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM162799" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15359" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-2" fbc:chemicalFormula="C20H30N6O12S2" hasOnlySubstanceUnits="false" id="M_gthox_e" metaid="M_gthox_e"
-      name="Oxidized glutathione">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_gthox_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/gthox" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:OXIDIZED-GLUTATHIONE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14328" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14720" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17858" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24336" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42832" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58297" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7840" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03337" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00127" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00031" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM151" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00111" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="1" fbc:chemicalFormula="C2H8NO" hasOnlySubstanceUnits="false" id="M_etha_c" metaid="M_etha_c"
-      name="Ethanolamine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_etha_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/etha" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ETHANOL-AMINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14223" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16000" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23979" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:272066" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42323" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4880" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57603" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00149" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62693" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00189" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D05074" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM218" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00162" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="1" fbc:chemicalFormula="C5H12NO" hasOnlySubstanceUnits="false" id="M_betald_c" metaid="M_betald_c"
-      name="Betaine aldehyde">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_betald_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/betald" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:BETAINE_ALDEHYDE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13896" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15710" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22859" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:3074" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41256" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01252" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00576" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM457" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00447" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C16H31O2" hasOnlySubstanceUnits="false" id="M_hdca_c" metaid="M_hdca_c"
-      name="Hexadecanoate (n-C16:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_hdca_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/hdca" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PALMITATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14730" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15756" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:231736" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:233028" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24540" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24541" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24542" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24550" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29889" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35978" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44952" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7896" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00220" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB60083" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00249" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D05341" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01010001" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01010046" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM108" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00214" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C8H13N2O9P" hasOnlySubstanceUnits="false" id="M_fgam_c" metaid="M_fgam_c"
-      name="N2-Formyl-N1-(5-phospho-D-ribosyl)glycinamide">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_fgam_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/fgam" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:5-P-RIBOSYL-N-FORMYLGLYCINEAMIDE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12635" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18272" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1982" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20498" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42411" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58426" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01308" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06476" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C04376" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM453" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02678" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C33H52N7O17P3S" hasOnlySubstanceUnits="false" id="M_dd2coa_c" metaid="M_dd2coa_c"
-      name="Trans-Dodec-2-enoyl-CoA">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dd2coa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dd2coa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-7222" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11489" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1287" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15471" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19790" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57330" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03712" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB11689" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C03221" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07050010" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07050176" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07050378" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM642" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02060" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C4H3NO4" hasOnlySubstanceUnits="false" id="M_iasp_c" metaid="M_iasp_c"
-      name="Iminoaspartate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_iasp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/iasp" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24784" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:50616" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5878" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58831" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:77875" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01131" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05840" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01170110" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM599" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03470" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C6H12O6" hasOnlySubstanceUnits="false" id="M_fru_p" metaid="M_fru_p" name="D-Fructose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_fru_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/fru" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-15382" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-Fructopyranose" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:FRU" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:Fructofuranose" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12923" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15824" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20929" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24104" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24110" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28757" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:37714" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:37721" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4118" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4119" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:47424" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48095" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5172" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62538" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00095" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01496" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05003" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C10906" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00114" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM175" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00082" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd19015" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd27040" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C8H7N" hasOnlySubstanceUnits="false" id="M_indole_p" metaid="M_indole_p" name="Indole">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_indole_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/indole" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:INDOLE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14444" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16881" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24794" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35579" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35581" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43537" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5900" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00738" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00463" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM377" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00359" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C3H6O" hasOnlySubstanceUnits="false" id="M_ppal_c" metaid="M_ppal_c" name="Propanal">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ppal_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ppal" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-665" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14898" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17153" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26281" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41359" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45052" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8468" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03366" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00479" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM821" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00371" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C35H64O5" hasOnlySubstanceUnits="false" id="M_12dgr161_c" metaid="M_12dgr161_c"
-      name="1,2-Diacyl-sn-glycerol (dihexadec-9-enoyl, n-C16:1)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_12dgr161_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/12dgr161" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM3774" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C4H4O6" hasOnlySubstanceUnits="false" id="M_tartr__D_c" metaid="M_tartr__D_c"
-      name="D-tartrate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_tartr__D_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/tartr__D" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-TARTRATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11077" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15672" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18806" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18807" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30927" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35399" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:446" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45873" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB29878" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C02107" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM7948" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd19018" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-5" fbc:chemicalFormula="C29H39N7O20P3S" hasOnlySubstanceUnits="false" id="M_3oxdhscoa_c" metaid="M_3oxdhscoa_c"
-      name="3-oxo-5,6-dehydrosuberyl-CoA">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_3oxdhscoa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/3oxdhscoa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2364" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:63253" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:63255" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C19945" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07050236" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM3852" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd21184" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C10H16N3O6SSe" hasOnlySubstanceUnits="false" id="M_gslnt_c" metaid="M_gslnt_c"
-      name="Glutathiolselenolate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_gslnt_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/gslnt" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM148268" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="CH5NO3P" hasOnlySubstanceUnits="false" id="M_ampnt_c" metaid="M_ampnt_c"
-      name="Aminomethylphosphonate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ampnt_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ampnt" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C6H11O9P" hasOnlySubstanceUnits="false" id="M_f6p_c" metaid="M_f6p_c"
-      name="D-Fructose 6-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_f6p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/f6p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:FRUCTOSE-6P" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10375" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12352" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16084" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22768" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42378" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57634" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03971" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05345" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM89621" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd19035" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="2" fbc:chemicalFormula="C14H24N6O3S" hasOnlySubstanceUnits="false" id="M_ametam_c" metaid="M_ametam_c"
-      name="S-Adenosylmethioninamine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ametam_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ametam" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:S-ADENOSYLMETHIONINAMINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10906" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12743" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12762" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15625" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22035" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57443" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8947" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00988" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01137" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM321" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00837" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C10H8O6" hasOnlySubstanceUnits="false" id="M_pphn_c" metaid="M_pphn_c"
-      name="Prephenate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pphn_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pphn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PREPHENATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14884" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16666" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26256" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26257" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29934" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45028" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57852" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8399" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:84387" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB12283" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00254" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM503" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00219" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C15H21N5O15P2" hasOnlySubstanceUnits="false" id="M_prlp_c" metaid="M_prlp_c"
-      name="5-[(5-phospho-1-deoxyribulos-1-ylamino)methylideneamino]-1-(5-phosphoribosyl)imidazole-4-carboxamide">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_prlp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/prlp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PHOSPHORIBULOSYL-FORMIMINO-AICAR-P" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12100" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21471" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27735" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:39698" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58525" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7090" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C04916" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1408" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02991" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C6H8N3O7P2" hasOnlySubstanceUnits="false" id="M_2mahmp_c" metaid="M_2mahmp_c"
-      name="2-Methyl-4-amino-5-hydroxymethylpyrimidine diphosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2mahmp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2mahmp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:AMINO-HYDROXYMETHYL-METHYLPYRIMIDINE-PP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11612" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1194" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11953" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16629" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19684" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20308" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29079" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57841" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C04752" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1135" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02894" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C11H12NO9P" hasOnlySubstanceUnits="false" id="M_nicrnt_c" metaid="M_nicrnt_c"
-      name="Nicotinate D-ribonucleotide">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_nicrnt_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/nicrnt" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:NICOTINATE_NUCLEOTIDE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12398" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14651" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14652" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15763" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25532" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57502" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7561" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB59646" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01185" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM194" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00873" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="O2" hasOnlySubstanceUnits="false" id="M_o2_e" metaid="M_o2_e" name="O2 O2">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_o2_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/o2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:OXYGEN-MOLECULE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10745" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13416" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15379" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23833" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25366" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26689" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27140" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29097" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29793" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30491" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44742" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7860" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01377" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00007" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00003" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM4" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00007" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-2" fbc:chemicalFormula="C4H4O4" hasOnlySubstanceUnits="false" id="M_succ_e" metaid="M_succ_e" name="Succinate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_succ_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/succ" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:SUC" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:132287" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15125" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15741" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22941" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22943" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26803" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26807" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30031" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30779" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45639" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:90372" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9304" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00254" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00042" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01170043" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM25" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00036" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C51H74O2" hasOnlySubstanceUnits="false" id="M_mql8_c" metaid="M_mql8_c"
-      name="Menaquinol 8">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_mql8_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/mql8" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:REDUCED-MENAQUINONE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61684" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM223" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15499" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C10H12N4O6" hasOnlySubstanceUnits="false" id="M_xtsn_e" metaid="M_xtsn_e"
-      name="Xanthosine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_xtsn_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/xtsn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:XANTHOSINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10066" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15323" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18107" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27327" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00299" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01762" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM687" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01217" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C6H9O7" hasOnlySubstanceUnits="false" id="M_5dglcn_c" metaid="M_5dglcn_c"
-      name="5-Dehydro-D-gluconate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_5dglcn_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/5dglcn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:5-DEHYDROGLUCONATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12120" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12121" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17426" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2051" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20564" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58143" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01062" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM963" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00781" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="1" fbc:chemicalFormula="C6H14NO2S" hasOnlySubstanceUnits="false" id="M_mmet_e" metaid="M_mmet_e"
-      name="S-Methyl-L-methionine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_mmet_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/mmet" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-397" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12772" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17728" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22057" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58252" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:67050" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8965" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C03172" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1119" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02027" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="2" fbc:chemicalFormula="C9H23N3O" hasOnlySubstanceUnits="false" id="M_N1aspmd_c" metaid="M_N1aspmd_c"
-      name="N1-Acetylspermidine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_N1aspmd_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/N1aspmd" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-568" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12625" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17927" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21798" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58324" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7356" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01276" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00612" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM501" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00470" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C20H20N7O6" hasOnlySubstanceUnits="false" id="M_methf_c" metaid="M_methf_c"
-      name="5,10-Methenyltetrahydrofolate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_methf_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/methf" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:5-10-METHENYL-THF" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12068" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12069" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15638" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1987" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57455" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62623" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00445" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM511" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00347" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C3H7NO2" hasOnlySubstanceUnits="false" id="M_ala__L_p" metaid="M_ala__L_p"
-      name="L-Alanine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ala__L_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ala__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:L-ALPHA-ALANINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13069" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:132498" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13748" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16449" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16977" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21216" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22277" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2539" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32431" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32432" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32439" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32440" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40734" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40735" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46308" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57972" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6171" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:66916" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:76050" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00161" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62251" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00041" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01401" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00012" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM32" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00035" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01003" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C6H9O7" hasOnlySubstanceUnits="false" id="M_galur_p" metaid="M_galur_p"
-      name="D-Galacturonate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_galur_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/galur" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-Galactopyranuronate" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18024" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20976" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20978" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4153" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:75525" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00333" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM48464" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00280" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="CH1O2" hasOnlySubstanceUnits="false" id="M_for_p" metaid="M_for_p" name="Formate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_for_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/for" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CARBOXYL-GROUP" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-9845" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD1G-1532" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD1G-1533" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD1G-1534" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD1G-1535" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:FORMATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14276" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15740" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24081" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24082" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30751" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42460" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5145" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00142" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00058" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM39" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00047" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd22511" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C27H42FeN9O12" hasOnlySubstanceUnits="false" id="M_fecrm_e" metaid="M_fecrm_e"
-      name="Ferrichrome">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_fecrm_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/fecrm" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2241" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5019" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06228" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2825" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03724" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-2" fbc:chemicalFormula="C4H4O5" hasOnlySubstanceUnits="false" id="M_mal__D_e" metaid="M_mal__D_e"
-      name="D-Malate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_mal__D_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/mal__D" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-660" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11002" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15588" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18685" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18686" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30796" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:342" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42060" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44073" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB31518" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00497" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1608" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00386" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C6H14O8P" hasOnlySubstanceUnits="false" id="M_g3pg_p" metaid="M_g3pg_p"
-      name="Glycerophosphoglycerol">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_g3pg_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/g3pg" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLYCEROPHOSPHOGLYCEROL" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5457" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61933" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C03274" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM598" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02090" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-6" fbc:chemicalFormula="C10H11N5O17P4" hasOnlySubstanceUnits="false" id="M_ppgpp_c" metaid="M_ppgpp_c"
-      name="Guanosine 3',5'-bis(diphosphate)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ppgpp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ppgpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GUANOSINE-5DP-3DP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14376" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14380" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17633" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24445" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42747" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5565" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58215" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:77828" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB59638" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01228" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1189" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00905" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C2H5O3S" hasOnlySubstanceUnits="false" id="M_ethso3_c" metaid="M_ethso3_c"
-      name="Ethanesulfonate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ethso3_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ethso3" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-10434" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42465" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61909" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM7343" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd11579" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="C8H14NO9P" hasOnlySubstanceUnits="false" id="M_acgam1p_p" metaid="M_acgam1p_p"
-      name="N-Acetyl-D-glucosamine 1-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_acgam1p_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/acgam1p" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7125" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C04256" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM91871" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02611" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-4" fbc:chemicalFormula="C77H117N15O40" hasOnlySubstanceUnits="false" id="M_murein5px4p_p"
-      metaid="M_murein5px4p_p" name="Two disacharide linked murein units, pentapeptide crosslinked tetrapeptide (A2pm-&gt;D-ala) (middle of chain)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_murein5px4p_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/murein5px4p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2278" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM88338" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15514" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C21H39N2O8PRS" hasOnlySubstanceUnits="false" id="M_dcaACP_c" metaid="M_dcaACP_c"
-      name="Decanoyl-ACP (n-C10:0ACP)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dcaACP_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dcaACP" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM90236" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C23H41N2O9PRS" hasOnlySubstanceUnits="false" id="M_3hcddec5eACP_c"
-      metaid="M_3hcddec5eACP_c" name="(R)-3-hydroxy-cis-dodec-5-enoyl-[acyl-carrier protein]">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_3hcddec5eACP_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/3hcddec5eACP" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM5389" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15366" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C20H40O9P1" hasOnlySubstanceUnits="false" id="M_2agpg140_p" metaid="M_2agpg140_p"
-      name="2-Acyl-sn-glycero-3-phosphoglycerol (n-C14:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2agpg140_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2agpg140" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2173" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM34739" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd26437" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C23H48NO7P1" hasOnlySubstanceUnits="false" id="M_1agpe180_p" metaid="M_1agpe180_p"
-      name="1-Acyl-sn-glycero-3-phosphoethanolamine (n-C18:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_1agpe180_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/1agpe180" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2152" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:75036" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:83047" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB11130" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C21484" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMGP02050001" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM32694" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd26433" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C20H38O9P1" hasOnlySubstanceUnits="false" id="M_1agpg141_p" metaid="M_1agpg141_p"
-      name="1-Acyl-sn-glycero-3-phosphoglycerol (n-C14:1)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_1agpg141_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/1agpg141" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM6604" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="H8O2S6R" hasOnlySubstanceUnits="false" id="M_sufbcd_c" metaid="M_sufbcd_c"
-      name="SufBCD scaffold complex">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_sufbcd_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/sufbcd" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM147307" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C21H28N7O18P3" hasOnlySubstanceUnits="false" id="M_nadphx__R_c" metaid="M_nadphx__R_c"
-      name="(R)-NADPHX">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_nadphx__R_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/nadphx__R" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C4H2O5" hasOnlySubstanceUnits="false" id="M_oaa_c" metaid="M_oaa_c" name="Oxaloacetate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_oaa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/oaa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ENOL-OXALOACETATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:OXALACETIC_ACID" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12820" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14703" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16452" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24958" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24959" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25731" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25734" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29049" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30744" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7812" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00223" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00036" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C03981" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01170061" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01170120" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM46" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00032" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02469" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C12H21O14P" hasOnlySubstanceUnits="false" id="M_tre6p_c" metaid="M_tre6p_c"
-      name="Alpha,alpha'-Trehalose 6-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_tre6p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/tre6p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TREHALOSE-6P" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10201" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12285" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15252" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18283" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22364" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58429" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01124" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00689" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.glycan/G09795" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM448" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00523" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C6H11O9P" hasOnlySubstanceUnits="false" id="M_man6p_c" metaid="M_man6p_c"
-      name="D-Mannose 6-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_man6p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/man6p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-15979" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-15980" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:Mannose-6-phosphate" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13000" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17369" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4211" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48042" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48066" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58735" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00275" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM427" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00235" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C10H13N4O9P" hasOnlySubstanceUnits="false" id="M_fprica_c" metaid="M_fprica_c"
-      name="5-Formamido-1-(5-phospho-D-ribosyl)imidazole-4-carboxamide">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_fprica_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/fprica" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PHOSPHORIBOSYL-FORMAMIDO-CARBOXAMIDE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12125" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18381" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18967" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:574" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58467" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62708" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C04734" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM456" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02884" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C6H11O7" hasOnlySubstanceUnits="false" id="M_mana_c" metaid="M_mana_c"
-      name="D-Mannonate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_mana_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/mana" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-MANNONATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12998" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17767" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21052" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21053" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:33076" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4206" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49545" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58654" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00514" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1045" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00403" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-1" fbc:chemicalFormula="C6H11O7" hasOnlySubstanceUnits="false" id="M_glcn_e" metaid="M_glcn_e"
-      name="D-Gluconate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_glcn_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/glcn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLUCONATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12955" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18391" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20983" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20985" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20986" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24265" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24266" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:33198" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4157" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42715" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00625" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03373" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00257" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM341" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00222" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C68H126N2O23P2" hasOnlySubstanceUnits="false" id="M_lipidA_c" metaid="M_lipidA_c"
-      name="2,3,2'3'-Tetrakis(beta-hydroxymyristoyl)-D-glucosaminyl-1,6-beta-D-glucosamine 1,4'-bisphosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_lipidA_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/lipidA" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:LIPID-IV-A" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11407" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19292" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19294" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28165" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29056" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58603" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:863" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C04919" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMSL01040001" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1754" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02993" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C6H13O9P" hasOnlySubstanceUnits="false" id="M_sbt6p_c" metaid="M_sbt6p_c"
-      name="D-Sorbitol 6-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_sbt6p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/sbt6p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-SORBITOL-6-P" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13021" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15094" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17044" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17116" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21093" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4247" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45426" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:60084" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9202" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB05831" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01096" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM393" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00804" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C4H5N3O" hasOnlySubstanceUnits="false" id="M_csn_c" metaid="M_csn_c" name="Cytosine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_csn_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/csn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CYTOSINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14066" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16040" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23531" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4072" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41732" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00630" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00380" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM761" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00307" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-5" fbc:chemicalFormula="C20H24N10O22P5" hasOnlySubstanceUnits="false" id="M_ap5a_c" metaid="M_ap5a_c"
-      name="P1,P5-Bis(5'-adenosyl) pentaphosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ap5a_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ap5a" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-1137" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22002" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28898" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:3120" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:62041" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C04058" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2412" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02511" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="HSe" hasOnlySubstanceUnits="false" id="M_seln_c" metaid="M_seln_c" name="Selenide">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_seln_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/seln" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-678" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:SE-2" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15076" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16503" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24638" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29317" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30485" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30486" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:47675" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9089" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB11110" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01528" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM92652" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01078" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd28148" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="RHO" hasOnlySubstanceUnits="false" id="M_apoACP_c" metaid="M_apoACP_c"
-      name="Apoprotein [acyl carrier protein]">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_apoACP_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/apoACP" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2214" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd12370" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd29672" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-2" fbc:chemicalFormula="C9H11N2O9P" hasOnlySubstanceUnits="false" id="M_ump_e" metaid="M_ump_e"
-      name="UMP C9H11N2O9P">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ump_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ump" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:UMP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13508" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13509" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16695" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27231" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46362" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46382" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46385" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:47721" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57865" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9849" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00105" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM80" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00091" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C30H27N3O15" hasOnlySubstanceUnits="false" id="M_enter_p" metaid="M_enter_p"
-      name="Enterochelin">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_enter_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/enter" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ENTEROBACTIN" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23923" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28855" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:38150" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4799" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:77805" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05821" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM883" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03453" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-1" fbc:chemicalFormula="O2" hasOnlySubstanceUnits="false" id="M_o2s_e" metaid="M_o2s_e" name="Superoxide anion">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_o2s_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/o2s" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:SUPER-OXIDE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15143" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18421" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25935" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26839" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30492" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7710" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02168" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00704" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM330" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="C9H12N3O8P" hasOnlySubstanceUnits="false" id="M_3cmp_p" metaid="M_3cmp_p"
-      name="3  CMP C9H12N3O8P">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_3cmp_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/3cmp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-3711" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1335" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23517" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28929" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41345" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41615" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:53013" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:60875" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05822" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2182" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03454" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C7H15NO3" hasOnlySubstanceUnits="false" id="M_crn__D_c" metaid="M_crn__D_c"
-      name="D-Carnitine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_crn__D_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/crn__D" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-CARNITINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11060" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:51453" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62634" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C15025" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM246" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd10719" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-2" fbc:chemicalFormula="C15H22N2O17P2" hasOnlySubstanceUnits="false" id="M_udpgal_e" metaid="M_udpgal_e"
-      name="UDPgalactose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_udpgal_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/udpgal" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-14553" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13487" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13495" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18307" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22100" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42751" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58439" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:66914" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:67119" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9811" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62573" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00052" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.glycan/G10609" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM89795" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00043" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd30770" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="C17H25N3O17P2" hasOnlySubstanceUnits="false" id="M_udpacgal_p" metaid="M_udpacgal_p"
-      name="UDP-N-acetyl-D-galactosamine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_udpacgal_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/udpacgal" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:UDP-N-ACETYL-GALACTOSAMINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13455" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13470" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16650" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22112" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57847" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9820" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00203" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.glycan/G10611" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM162233" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00175" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-2" fbc:chemicalFormula="C3H7O6P" hasOnlySubstanceUnits="false" id="M_glyc2p_e" metaid="M_glyc2p_e"
-      name="Glycerol 2-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_glyc2p_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/glyc2p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-536" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14337" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17270" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26704" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42620" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5451" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58083" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C02979" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2527" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01908" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-4" fbc:chemicalFormula="C74H114N14O40" hasOnlySubstanceUnits="false" id="M_murein5p3p_p" metaid="M_murein5p3p_p"
-      name="Two linked disacharide pentapeptide and tripeptide murein units (uncrosslinked, middle of chain)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_murein5p3p_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/murein5p3p" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM5972" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15509" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C39H75O8P1" hasOnlySubstanceUnits="false" id="M_pa180_c" metaid="M_pa180_c"
-      name="1,2-dioctadecanoyl-sn-glycerol 3-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pa180_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pa180" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-1423" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:82921" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:83774" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMGP10010028" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM51279" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15526" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd26148" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C10H11N4O10P2" hasOnlySubstanceUnits="false" id="M_didp_c" metaid="M_didp_c"
-      name="DIDP; 2'-deoxyinosine-5'-diphosphate(3-)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_didp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/didp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2231" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10498" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19249" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28823" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:62286" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03536" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01344" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2174" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00976" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C38H70O10P1" hasOnlySubstanceUnits="false" id="M_pg161_p" metaid="M_pg161_p"
-      name="Phosphatidylglycerol (dihexadec-9-enoyl, n-C16:1)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pg161_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pg161" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2330" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM75101" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15539" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd26463" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C20H38O9P1" hasOnlySubstanceUnits="false" id="M_2agpg141_p" metaid="M_2agpg141_p"
-      name="2-Acyl-sn-glycero-3-phosphoglycerol (n-C14:1)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2agpg141_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2agpg141" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM3452" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="C19H35O7P1" hasOnlySubstanceUnits="false" id="M_1hdec9eg3p_p" metaid="M_1hdec9eg3p_p"
-      name="1-hexadec-9-enoyl-sn-glycerol 3-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_1hdec9eg3p_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/1hdec9eg3p" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM91047" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15326" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="H4O2S10Fe4R" hasOnlySubstanceUnits="false" id="M_iscu_4fe4s_c" metaid="M_iscu_4fe4s_c"
-      name="IscU with bound [4Fe-4S] cluster">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_iscu_4fe4s_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/iscu_4fe4s" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM148286" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C11H12Cl2N2O5" hasOnlySubstanceUnits="false" id="M_cm_p" metaid="M_cm_p"
-      name="Chloramphenicol">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cm_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cm" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CHLORAMPHENICOL" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13965" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17698" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23106" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23108" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:3603" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:47327" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:94390" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB14589" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00918" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00104" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM4519" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00680" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C21H20O6" hasOnlySubstanceUnits="false" id="M_cur_c" metaid="M_cur_c" name="Curcumin">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cur_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cur" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C5H7O10P2" hasOnlySubstanceUnits="false" id="M_prcp_c" metaid="M_prcp_c"
-      name="5-phospho-?-D-ribose 1,2-cyclic phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_prcp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/prcp" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C4H4O4" hasOnlySubstanceUnits="false" id="M_succ_c" metaid="M_succ_c" name="Succinate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_succ_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/succ" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:SUC" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:132287" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15125" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15741" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22941" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22943" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26803" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26807" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30031" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30779" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45639" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:90372" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9304" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00254" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00042" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01170043" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM25" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00036" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C6H13NO8P" hasOnlySubstanceUnits="false" id="M_gam6p_c" metaid="M_gam6p_c"
-      name="D-Glucosamine 6-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_gam6p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/gam6p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-GLUCOSAMINE-6-P" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12962" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:47987" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58725" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00352" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM370" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00288" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C10H12N5O10PS" hasOnlySubstanceUnits="false" id="M_aps_c" metaid="M_aps_c"
-      name="Adenosine 5'-phosphosulfate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_aps_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/aps" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:APS" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12059" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13741" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13743" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17709" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22247" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2486" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40562" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58243" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00224" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM287" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00193" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C7H7NO4" hasOnlySubstanceUnits="false" id="M_thdp_c" metaid="M_thdp_c"
-      name="2,3,4,5-Tetrahydrodipicolinate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_thdp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/thdp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DELTA1-PIPERIDEINE-2-6-DICARBOXYLATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11408" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13042" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16845" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18055" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21189" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32976" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6152" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:864" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB12289" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C03972" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM480" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02465" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd29199" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C9H12N3O11P2" hasOnlySubstanceUnits="false" id="M_cdp_c" metaid="M_cdp_c"
-      name="CDP C9H12N3O11P2">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cdp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cdp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CDP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13254" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17239" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23519" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:3260" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41451" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58069" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00112" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM220" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00096" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C5H9O7P2" hasOnlySubstanceUnits="false" id="M_ipdp_c" metaid="M_ipdp_c"
-      name="Isopentenyl diphosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ipdp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ipdp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DELTA3-ISOPENTENYL-PP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:128769" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14473" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16584" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24907" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6037" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01347" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB04196" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00129" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMPR01010008" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM83" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00113" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C10H13N2O4" hasOnlySubstanceUnits="false" id="M_ppbng_c" metaid="M_ppbng_c"
-      name="Porphobilinogen">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ppbng_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ppbng" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PORPHOBILINOGEN" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14867" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17381" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26212" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44832" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58126" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8335" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00245" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00931" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM554" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00689" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C34H30FeN4O4" hasOnlySubstanceUnits="false" id="M_pheme_c" metaid="M_pheme_c"
-      name="Protoheme C34H30FeN4O4">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pheme_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pheme" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PROTOHEME" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14957" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17627" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26355" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5651" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:60344" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00032" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM249" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H5N5O" hasOnlySubstanceUnits="false" id="M_gua_e" metaid="M_gua_e" name="Guanine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_gua_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/gua" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GUANINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14371" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14372" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16235" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24443" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42948" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5563" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00132" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00242" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM259" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00207" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C3H8O2" hasOnlySubstanceUnits="false" id="M_12ppd__S_c" metaid="M_12ppd__S_c"
-      name="(S)-Propane-1,2-diol">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_12ppd__S_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/12ppd__S" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PROPANE-1-2-DIOL" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18799" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29002" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:440" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45065" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06213" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C02917" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1255" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd19024" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C46H70O2" hasOnlySubstanceUnits="false" id="M_2ohph_c" metaid="M_2ohph_c"
-      name="2-Octaprenyl-6-hydroxyphenol">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2ohph_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2ohph" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:2-OCTAPRENYL-6-HYDROXYPHENOL" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1233" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:62730" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05811" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1635" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03445" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C9H10NO7" hasOnlySubstanceUnits="false" id="M_sucglu_c" metaid="M_sucglu_c"
-      name="N2-Succinyl-L-glutamate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_sucglu_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/sucglu" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:N2-SUCCINYLGLUTAMATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21821" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48957" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58763" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7373" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05931" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1757" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03525" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C5H5O3" hasOnlySubstanceUnits="false" id="M_op4en_c" metaid="M_op4en_c"
-      name="2-Oxopent-4-enoate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_op4en_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/op4en" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-14447" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-6761" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:OXOPENTENOATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1113" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48643" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:60886" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:67152" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:67181" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00596" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM9829" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00461" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd27712" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C2H6OS" hasOnlySubstanceUnits="false" id="M_dmso_c" metaid="M_dmso_c"
-      name="Dimethyl sulfoxide">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dmso_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dmso" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DMSO" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23801" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28262" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42138" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4612" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02151" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C11143" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D01043" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM745" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd08021" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C16H22N2O15P2" hasOnlySubstanceUnits="false" id="M_dtdp4d6dm_c" metaid="M_dtdp4d6dm_c"
-      name="DTDP-4-dehydro-6-deoxy-L-mannose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dtdp4d6dm_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dtdp4d6dm" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DTDP-DEOH-DEOXY-MANNOSE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10511" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14082" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15744" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23543" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45868" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57494" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:62830" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00688" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2371" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00522" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd08300" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C18H32O16" hasOnlySubstanceUnits="false" id="M_malttr_c" metaid="M_malttr_c"
-      name="Maltotriose C18H32O16">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_malttr_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/malttr" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:MALTOTRIOSE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25146" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27931" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43937" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61993" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6672" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01262" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01835" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM468" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01262" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C10H17N4O5" hasOnlySubstanceUnits="false" id="M_sucarg_c" metaid="M_sucarg_c"
-      name="N2-Succinyl-L-arginine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_sucarg_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/sucarg" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-421" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12637" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17705" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21819" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58241" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7372" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C03296" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1756" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02103" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H10O5" hasOnlySubstanceUnits="false" id="M_arab__L_p" metaid="M_arab__L_p"
-      name="L-Arabinose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_arab__L_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/arab__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-15699" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:L-ARABINOSE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6182" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C11476" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM91126" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd19109" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd27351" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C10H13N5O5" hasOnlySubstanceUnits="false" id="M_gsn_p" metaid="M_gsn_p" name="Guanosine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_gsn_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/gsn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GUANOSINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14375" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16750" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24444" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42840" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42847" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42853" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:471737" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5564" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00133" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00387" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM401" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00311" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="NO3" hasOnlySubstanceUnits="false" id="M_no3_p" metaid="M_no3_p" name="Nitrate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_no3_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/no3" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-15028" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:NITRATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14654" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17632" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25545" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44487" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48107" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:71263" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7580" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01853" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02878" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00244" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D02313" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM207" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00209" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C12H23O2" hasOnlySubstanceUnits="false" id="M_ddca_p" metaid="M_ddca_p"
-      name="Dodecanoate (n-C12:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ddca_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ddca" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM162258" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="MoO4" hasOnlySubstanceUnits="false" id="M_mobd_c" metaid="M_mobd_c" name="Molybdate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_mobd_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/mobd" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-3" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25368" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25371" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:36263" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:36264" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6967" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB12260" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06232" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C15455" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1026" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd11574" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-3" fbc:chemicalFormula="C27H42N9O12" hasOnlySubstanceUnits="false" id="M_fecrm_un_e" metaid="M_fecrm_un_e"
-      name="Ferrichrome minus Fe(III)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_fecrm_un_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/fecrm_un" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2205" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM53290" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15462" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-1" fbc:chemicalFormula="C9H18O11P" hasOnlySubstanceUnits="false" id="M_g3pi_e" metaid="M_g3pi_e"
-      name="Sn-Glycero-3-phospho-1-inositol">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_g3pi_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/g3pi" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-541" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10645" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11200" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18321" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26695" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58444" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:64715" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB11649" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01225" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1517" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00902" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C8H20NO6P" hasOnlySubstanceUnits="false" id="M_g3pc_e" metaid="M_g3pc_e"
-      name="Sn-Glycero-3-phosphocholine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_g3pc_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/g3pc" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:L-1-GLYCERO-PHOSPHORYLCHOLINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10646" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12841" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12847" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14343" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16870" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26697" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41458" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:55397" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:76433" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00670" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D07349" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM367" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00507" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C10H11N5O6P" hasOnlySubstanceUnits="false" id="M_23camp_p" metaid="M_23camp_p"
-      name="2',3'-Cyclic AMP">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_23camp_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/23camp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-3707" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19212" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27844" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40469" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:60879" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:823" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C02353" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2598" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01570" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C60H100N1O7P1" hasOnlySubstanceUnits="false" id="M_uLa4n_c" metaid="M_uLa4n_c"
-      name="Undecaprenyl phosphate-4-amino-4-deoxy-L-arabinose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_uLa4n_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/uLa4n" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM90891" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15576" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="C9H10NO6P" hasOnlySubstanceUnits="false" id="M_tyrp_p" metaid="M_tyrp_p"
-      name="Phosphotyrosine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_tyrp_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/tyrp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-3728" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21991" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:37788" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45080" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45158" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45187" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45209" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:62338" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8171" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06501" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM3323" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03912" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C42H77N1O10P1" hasOnlySubstanceUnits="false" id="M_ps181_c" metaid="M_ps181_c"
-      name="Phosphatidylserine (dioctadec-11-enoyl, n-C18:1)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ps181_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ps181" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM7662" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-3" fbc:chemicalFormula="C34H65O13P2" hasOnlySubstanceUnits="false" id="M_pgp140_p" metaid="M_pgp140_p"
-      name="Phosphatidylglycerophosphate (ditetradecanoyl, n-C14:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pgp140_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pgp140" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM5272" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C20H38O9P1" hasOnlySubstanceUnits="false" id="M_2agpg141_c" metaid="M_2agpg141_c"
-      name="2-Acyl-sn-glycero-3-phosphoglycerol (n-C14:1)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2agpg141_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2agpg141" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM3452" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C22H42O9P1" hasOnlySubstanceUnits="false" id="M_2agpg161_c" metaid="M_2agpg161_c"
-      name="2-Acyl-sn-glycero-3-phosphoglycerol (n-C16:1)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2agpg161_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2agpg161" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM3453" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C6H12N2O4S2" hasOnlySubstanceUnits="false" id="M_cysi__L_p" metaid="M_cysi__L_p"
-      name="L Cystine C6H12N2O4S2">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cysi__L_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cysi__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CYSTINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13097" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16283" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21278" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35491" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6209" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:63163" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00192" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00491" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D03636" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM927" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00381" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C5H7O5" hasOnlySubstanceUnits="false" id="M_2ddara_c" metaid="M_2ddara_c"
-      name="2-dehydro-3-deoxy-D-arabinonate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2ddara_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2ddara" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C7H13O10P" hasOnlySubstanceUnits="false" id="M_s7p_c" metaid="M_s7p_c"
-      name="Sedoheptulose 7-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_s7p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/s7p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-SEDOHEPTULOSE-7-P" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15073" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15074" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15721" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26621" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4244" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57483" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9083" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01068" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62754" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05382" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM271" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00238" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C15H21N5O15P2" hasOnlySubstanceUnits="false" id="M_prfp_c" metaid="M_prfp_c"
-      name="1-(5-Phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino]imidazole-4-carboxamide">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_prfp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/prfp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PHOSPHORIBOSYL-FORMIMINO-AICAR-P" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11194" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18302" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2020" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20528" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58435" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:75912" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB12277" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C04896" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1397" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02979" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C4H5N3O" hasOnlySubstanceUnits="false" id="M_csn_e" metaid="M_csn_e" name="Cytosine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_csn_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/csn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CYTOSINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14066" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16040" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23531" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4072" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41732" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00630" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00380" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM761" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00307" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C8H12O11P" hasOnlySubstanceUnits="false" id="M_kdo8p_c" metaid="M_kdo8p_c"
-      name="3-Deoxy-D-manno-octulosonate 8-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_kdo8p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/kdo8p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:KDO-8P" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11552" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11788" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1494" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18069" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20006" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42115" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58368" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:85985" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C04478" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM146080" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02730" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C3H7NO3" hasOnlySubstanceUnits="false" id="M_ser__L_e" metaid="M_ser__L_e"
-      name="L-Serine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ser__L_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ser__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:SER" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:Serines" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13167" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15081" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17115" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17822" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21387" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26648" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32836" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32837" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32845" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32846" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:33384" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35243" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45440" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45451" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45590" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45597" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45677" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6301" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9116" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00187" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00589" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62263" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00065" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00716" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00016" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01100045" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM53" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00054" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd28171" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd30743" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C15H19N5O6S" hasOnlySubstanceUnits="false" id="M_amob_c" metaid="M_amob_c"
-      name="S-Adenosyl-4-methylthio-2-oxobutanoate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_amob_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/amob" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:S-ADENOSYL-4-METHYLTHIO-2-OXOBUTANOATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12758" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16490" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22033" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8944" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C04425" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM3090" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02701" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-1" fbc:chemicalFormula="C14H27O2" hasOnlySubstanceUnits="false" id="M_ttdca_e" metaid="M_ttdca_e"
-      name="Tetradecanoate (n-C14:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ttdca_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ttdca" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM162239" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-5" fbc:chemicalFormula="C25H35N7O19P3S" hasOnlySubstanceUnits="false" id="M_mmcoa__S_c" metaid="M_mmcoa__S_c"
-      name="(S)-Methylmalonyl-CoA">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_mmcoa__S_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/mmcoa__S" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-METHYL-MALONYL-COA" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11038" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11068" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15466" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18742" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:384" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43874" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57327" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02310" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00683" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07050164" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM89955" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00519" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd29701" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C3H5O4" hasOnlySubstanceUnits="false" id="M_glyc__R_c" metaid="M_glyc__R_c"
-      name="(R)-Glycerate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_glyc__R_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/glyc__R" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLYCERATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10999" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12985" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16659" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21027" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21030" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24348" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24349" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32398" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:33508" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:33846" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:33871" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4187" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41990" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00139" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00258" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM189" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00223" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C2H6S" hasOnlySubstanceUnits="false" id="M_dms_c" metaid="M_dms_c"
-      name="Dimethyl sulfide">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dms_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dms" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-7670" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14168" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14175" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17437" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23800" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44169" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4611" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02303" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00580" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM444" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00450" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C6H9O6" hasOnlySubstanceUnits="false" id="M_2dh3dgal_c" metaid="M_2dh3dgal_c"
-      name="2-Dehydro-3-deoxy-D-galactonate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2dh3dgal_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2dh3dgal" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:2-DEHYDRO-3-DEOXY-D-GALACTONATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:2-DEHYDRO-3-DEOXY-D-GLUCONATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1056" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1059" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11547" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11550" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17028" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17032" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19527" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19530" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57989" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57990" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01353" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00204" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01216" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01050475" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01050486" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1627" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00176" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00894" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C23H43N2O8PRS" hasOnlySubstanceUnits="false" id="M_ddcaACP_c" metaid="M_ddcaACP_c"
-      name="Dodecanoyl-ACP (n-C12:0ACP)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ddcaACP_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ddcaACP" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM89851" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C9H8O6" hasOnlySubstanceUnits="false" id="M_hkndd_c" metaid="M_hkndd_c"
-      name="2-Hydroxy-6-oxonona-2,4-diene-1,9-dioate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_hkndd_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/hkndd" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-157" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1140" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11589" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17367" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19615" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19621" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61449" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61470" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:66887" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:66936" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C04479" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1693" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02731" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C6H11O9P" hasOnlySubstanceUnits="false" id="M_all6p_c" metaid="M_all6p_c"
-      name="D-Allose 6-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_all6p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/all6p" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12907" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17942" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20901" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4094" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58328" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C02962" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM4545" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01901" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C6H11O9P" hasOnlySubstanceUnits="false" id="M_allul6p_c" metaid="M_allul6p_c"
-      name="Allulose 6-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_allul6p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/allul6p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-ALLULOSE-6-PHOSPHATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61519" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61559" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:81499" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C18096" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM4546" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15394" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C6H14O6" hasOnlySubstanceUnits="false" id="M_galt_p" metaid="M_galt_p" name="Galactitol">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_galt_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/galt" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GALACTITOL" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14286" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16813" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24139" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5251" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:53575" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00107" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01697" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1233" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01171" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C6H12O6" hasOnlySubstanceUnits="false" id="M_glc__D_p" metaid="M_glc__D_p"
-      name="D-Glucose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_glc__D_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/glc__D" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:Glucopyranose" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12965" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17634" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20999" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4167" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00122" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06564" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00031" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00009" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM41" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00027" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd26821" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C9H11NO2" hasOnlySubstanceUnits="false" id="M_phe__L_p" metaid="M_phe__L_p"
-      name="L-Phenylalanine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_phe__L_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/phe__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PHE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13151" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17295" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21370" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25984" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28044" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32486" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32487" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32504" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32505" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44851" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44885" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45079" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58095" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6282" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:76052" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8089" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00159" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00612" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00079" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C02057" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00021" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM97" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00066" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01400" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="O3S2" hasOnlySubstanceUnits="false" id="M_tsul_p" metaid="M_tsul_p" name="Thiosulfate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_tsul_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/tsul" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:S2O3" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15242" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16094" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26977" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29279" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:33539" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:33540" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:33541" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:33542" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45922" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5587" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9569" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00257" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00320" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05529" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM323" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00268" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="1" fbc:chemicalFormula="C12H17N4OS" hasOnlySubstanceUnits="false" id="M_thm_p" metaid="M_thm_p" name="Thiamin">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_thm_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/thm" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:THIAMINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15227" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18385" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26941" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46393" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49107" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9530" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00235" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00378" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM322" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00305" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C22H33FeN4O13" hasOnlySubstanceUnits="false" id="M_arbtn_fe3_e" metaid="M_arbtn_fe3_e"
-      name="Aerobactin">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_arbtn_fe3_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/arbtn_fe3" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:AEROBACTIN" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2234" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13745" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18157" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2499" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58396" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB04051" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05554" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1464" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03294" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd26452" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-1" fbc:chemicalFormula="Cl" hasOnlySubstanceUnits="false" id="M_cl_e" metaid="M_cl_e" name="Chloride">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cl_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cl" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CL-" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:HCL" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13291" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13364" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13970" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17883" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17996" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24635" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:3616" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:3731" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48804" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:50315" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5590" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00492" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02073" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02162" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02306" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00698" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01327" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D02057" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM43" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00099" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C39H66N7O17P3S" hasOnlySubstanceUnits="false" id="M_stcoa_c" metaid="M_stcoa_c"
-      name="Stearoyl-CoA (n-C18:0CoA)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_stcoa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/stcoa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:STEAROYL-COA" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15107" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15541" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26754" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57394" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9256" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01114" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00412" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07050369" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM272" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00327" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="C10H12N5O6P" hasOnlySubstanceUnits="false" id="M_damp_p" metaid="M_damp_p"
-      name="DAMP C10H12N5O6P">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_damp_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/damp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DAMP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10490" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14068" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17713" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19236" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40419" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40499" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40505" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40544" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40607" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40614" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41815" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41864" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41870" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58245" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00360" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM432" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00294" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-2" fbc:chemicalFormula="C10H12N5O8P" hasOnlySubstanceUnits="false" id="M_3gmp_e" metaid="M_3gmp_e"
-      name="Guanosine 3  phosphate C10H12N5O8P">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_3gmp_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/3gmp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-3708" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24447" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28072" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:39948" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42888" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5567" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:60732" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06193" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2183" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03701" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-3" fbc:chemicalFormula="C15H19N2O18P2" hasOnlySubstanceUnits="false" id="M_udpglcur_p" metaid="M_udpglcur_p"
-      name="UDP-D-glucuronate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_udpglcur_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/udpglcur" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:UDP-GLUCURONATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13489" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13506" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17200" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22104" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46309" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58052" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9846" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00167" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.glycan/G10612" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM87" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00144" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C23H41N2O8PRS" hasOnlySubstanceUnits="false" id="M_tddec2eACP_c" metaid="M_tddec2eACP_c"
-      name="Trans-Dodec-2-enoyl-[acyl-carrier protein]">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_tddec2eACP_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/tddec2eACP" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:Dodec-2-enoyl-ACPs" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10725" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05758" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07060016" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM23842" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd11469" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C41H82N1O8P1" hasOnlySubstanceUnits="false" id="M_pe180_p" metaid="M_pe180_p"
-      name="Phosphatidylethanolamine (dioctadecanoyl, n-C18:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pe180_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pe180" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-12818" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:39934" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44886" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:47765" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:47766" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB05327" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB08991" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMGP02010097" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM31536" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15533" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd23596" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C23H46NO7P1" hasOnlySubstanceUnits="false" id="M_2agpe181_c" metaid="M_2agpe181_c"
-      name="2-Acyl-sn-glycero-3-phosphoethanolamine (n-C18:1)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2agpe181_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2agpe181" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM3449" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-1" fbc:chemicalFormula="C3H5O3" hasOnlySubstanceUnits="false" id="M_3hpp_e" metaid="M_3hpp_e"
-      name="3-Hydroxypropanoate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_3hpp_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/3hpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:3-HYDROXY-PROPIONATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11836" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1553" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16510" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20071" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20079" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:33404" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40000" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01013" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM872" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00745" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C19H31N2O11PRS" hasOnlySubstanceUnits="false" id="M_opmeACP_c" metaid="M_opmeACP_c"
-      name="3-Oxo-pimeloyl-[acyl-carrier protein] methyl ester">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_opmeACP_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/opmeACP" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM147801" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="CH4O1" hasOnlySubstanceUnits="false" id="M_meoh_p" metaid="M_meoh_p" name="Methanol">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_meoh_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/meoh" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ALCOHOL-GROUP" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:METOH" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14588" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17790" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25227" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44080" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44553" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:52090" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6816" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01875" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00132" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D02309" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM157" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00116" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C30H32N15O20P3S4W" hasOnlySubstanceUnits="false" id="M_bwco1gdp_c" metaid="M_bwco1gdp_c"
-      name="Tungsten bispterin cofactor mono-guanine dinucleotide">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_bwco1gdp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/bwco1gdp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM148530" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C7H12NO3S" hasOnlySubstanceUnits="false" id="M_acmet_c" metaid="M_acmet_c"
-      name="N-Acetylmethionine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_acmet_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/acmet" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C21H29N7O15P2" hasOnlySubstanceUnits="false" id="M_nadhx__S_c" metaid="M_nadhx__S_c"
-      name="Adenosine 5'-(3-{5-[(2S)-5-carbamoyl-2-hydroxy-3,4-dihydropyridin-1-yl]-5-deoxy-?-D-ribofuranosyl} dihydrogen diphosphate)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_nadhx__S_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/nadhx__S" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C6H11O4" hasOnlySubstanceUnits="false" id="M_23dhmp_c" metaid="M_23dhmp_c"
-      name="(R)-2,3-Dihydroxy-3-methylpentanoate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_23dhmp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/23dhmp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:1-KETO-2-METHYLVALERATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18646" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27512" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:306" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49258" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB12140" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06007" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01050452" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1202" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd19046" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-8" fbc:chemicalFormula="C40H38N4O17" hasOnlySubstanceUnits="false" id="M_hmbil_c" metaid="M_hmbil_c"
-      name="Hydroxymethylbilane">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_hmbil_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/hmbil" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:HYDROXYMETHYLBILANE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14423" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16645" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24716" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57845" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5809" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01137" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01024" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM547" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00755" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-1" fbc:chemicalFormula="NO3" hasOnlySubstanceUnits="false" id="M_no3_e" metaid="M_no3_e" name="Nitrate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_no3_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/no3" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-15028" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:NITRATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14654" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17632" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25545" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44487" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48107" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:71263" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7580" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01853" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02878" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00244" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D02313" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM207" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00209" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C5H9O8P" hasOnlySubstanceUnits="false" id="M_ara5p_c" metaid="M_ara5p_c"
-      name="D-Arabinose 5-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ara5p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ara5p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ARABINOSE-5P" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12916" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16241" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20915" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4104" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57693" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:79058" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB11734" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01112" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1184" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00817" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C8H13O8" hasOnlySubstanceUnits="false" id="M_kdo_c" metaid="M_kdo_c"
-      name="3-Deoxy-D-manno-2-octulosonate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_kdo_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/kdo" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:KDO" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43577" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:85986" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM36403" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C9H12N2O5" hasOnlySubstanceUnits="false" id="M_duri_e" metaid="M_duri_e"
-      name="Deoxyuridine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_duri_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/duri" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DEOXYURIDINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11398" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11572" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14123" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16450" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19261" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23640" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29113" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42178" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4434" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46165" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46289" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46293" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00012" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00526" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM492" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00412" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C47H72O2" hasOnlySubstanceUnits="false" id="M_2omph_c" metaid="M_2omph_c"
-      name="2-Octaprenyl-6-methoxyphenol">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2omph_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2omph" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:2-OCTAPRENYL-6-METHOXYPHENOL" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1235" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05812" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1707" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03446" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-7" fbc:chemicalFormula="C42H39N4O16" hasOnlySubstanceUnits="false" id="M_scl_c" metaid="M_scl_c"
-      name="Sirohydrochlorin">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_scl_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/scl" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:SIROHYDROCHLORIN" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15090" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18023" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26691" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58351" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9167" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05778" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM863" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03426" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C34H38N4O4" hasOnlySubstanceUnits="false" id="M_pppg9_c" metaid="M_pppg9_c"
-      name="Protoporphyrinogen IX">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pppg9_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pppg9" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PROTOPORPHYRINOGEN" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14962" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15435" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26359" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26360" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57307" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8593" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01097" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01079" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM351" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00791" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-1" fbc:chemicalFormula="C11H18NO9" hasOnlySubstanceUnits="false" id="M_acnam_e" metaid="M_acnam_e"
-      name="N-Acetylneuraminate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_acnam_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/acnam" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:N-ACETYLNEURAMINATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12471" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12579" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17012" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21617" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21620" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29087" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:33987" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35418" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7214" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00230" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00800" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00270" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM227" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00232" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd27569" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C6H12O6" hasOnlySubstanceUnits="false" id="M_inost_c" metaid="M_inost_c"
-      name="Myo-Inositol">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_inost_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/inost" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-8052" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:MYO-INOSITOL" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10601" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12826" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12831" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17268" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19183" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24848" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25451" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27372" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4200" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43559" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:52772" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00211" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02256" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB34220" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00137" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C19891" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D08079" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM127" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00121" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd21131" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C7H13O10P" hasOnlySubstanceUnits="false" id="M_gmhep1p_c" metaid="M_gmhep1p_c"
-      name="D-Glycero-D-manno-heptose 1-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_gmhep1p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/gmhep1p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-BETA-D-HEPTOSE-1-P" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21031" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28137" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4189" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:60002" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61593" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C07838" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1661" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd04920" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C14H25O2" hasOnlySubstanceUnits="false" id="M_ttdcea_c" metaid="M_ttdcea_c"
-      name="Tetradecenoate (n-C14:1)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ttdcea_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ttdcea" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM641" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="2" fbc:chemicalFormula="Ni" hasOnlySubstanceUnits="false" id="M_ni2_e" metaid="M_ni2_e" name="Nickel">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ni2_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ni2" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25517" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49785" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49786" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02457" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C14711" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C19609" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM3673" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd20862" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="CH4" hasOnlySubstanceUnits="false" id="M_ch4_e" metaid="M_ch4_e" name="Methane">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ch4_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ch4" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CH4" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:METHYL-GROUP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14585" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16183" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25220" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29360" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29434" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29438" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6811" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02714" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01438" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM714" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01024" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd27447" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-6" fbc:chemicalFormula="C114H172N22O59" hasOnlySubstanceUnits="false" id="M_murein5px4px4p_p"
-      metaid="M_murein5px4px4p_p"
-      name="Three disacharide linked murein units (pentapeptide crosslinked tetrapeptide (A2pm-&gt;D-ala) tetrapeptide corsslinked tetrapeptide (A2pm-&gt;D-ala)) (middle of chain)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_murein5px4px4p_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/murein5px4px4p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2296" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM87121" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15515" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C34H62O10P1" hasOnlySubstanceUnits="false" id="M_pg141_c" metaid="M_pg141_c"
-      name="Phosphatidylglycerol (ditetradec-7-enoyl, n-C14:1)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pg141_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pg141" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2029" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C27H51O8P1" hasOnlySubstanceUnits="false" id="M_pa120_c" metaid="M_pa120_c"
-      name="1,2-didodecanoyl-sn-glycerol 3-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pa120_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pa120" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM90509" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15521" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="C20H30N6O12S2" hasOnlySubstanceUnits="false" id="M_gthox_p" metaid="M_gthox_p"
-      name="Oxidized glutathione">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_gthox_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/gthox" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:OXIDIZED-GLUTATHIONE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14328" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14720" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17858" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24336" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42832" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58297" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7840" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03337" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00127" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00031" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM151" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00111" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C21H42NO7P1" hasOnlySubstanceUnits="false" id="M_2agpe161_c" metaid="M_2agpe161_c"
-      name="2-Acyl-sn-glycero-3-phosphoethanolamine (n-C16:1)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2agpe161_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2agpe161" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM3448" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C22H32N7O17P3S" hasOnlySubstanceUnits="false" id="M_forcoa_c" metaid="M_forcoa_c"
-      name="Formyl-CoA(4-)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_forcoa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/forcoa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:FORMYL-COA" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14282" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15522" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24092" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49609" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5150" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57376" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03419" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06490" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00798" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM563" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00592" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C1H1O1S1X" hasOnlySubstanceUnits="false" id="M_moadcosh_c" metaid="M_moadcosh_c"
-      name="MoaD Protein with thiocarboxylate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_moadcosh_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/moadcosh" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM148354" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C22H24N2O8" hasOnlySubstanceUnits="false" id="M_ttrcyc_e" metaid="M_ttrcyc_e"
-      name="Tetracycline">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ttrcyc_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ttrcyc" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-1414" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26894" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27902" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45729" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:71392" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:77932" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9474" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB14897" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06570" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00201" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM97613" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03977" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C6H9N3O2" hasOnlySubstanceUnits="false" id="M_his__L_c" metaid="M_his__L_c"
-      name="L-Histidine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_his__L_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/his__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:HIS" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13117" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15971" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21324" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24598" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27570" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32510" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32511" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32512" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32513" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32529" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32530" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32531" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32532" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43048" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43114" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43118" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43190" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43239" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5733" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57595" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6240" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00177" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03412" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00135" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00768" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00032" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM134" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00119" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00572" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C17H20N4O6" hasOnlySubstanceUnits="false" id="M_ribflv_c" metaid="M_ribflv_c"
-      name="Riboflavin C17H20N4O6">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ribflv_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ribflv" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RIBOFLAVIN" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15044" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17015" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27299" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45214" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:529204" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57986" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8843" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00244" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00255" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00050" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM270" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00220" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-1" fbc:chemicalFormula="C3H5O3" hasOnlySubstanceUnits="false" id="M_lac__L_e" metaid="M_lac__L_e"
-      name="L-Lactate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_lac__L_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/lac__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:L-LACTATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11065" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12411" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16651" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18783" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:422" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00190" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03328" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62492" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00186" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM179" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00159" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="O4S" hasOnlySubstanceUnits="false" id="M_so4_c" metaid="M_so4_c" name="Sulfate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_so4_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/so4" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:HSO4" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:SULFATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15135" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16189" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26836" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29199" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45687" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45693" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45696" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9335" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01448" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00059" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D05963" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM58" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00048" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C10H11N4O14P3" hasOnlySubstanceUnits="false" id="M_itp_c" metaid="M_itp_c"
-      name="ITP C10H11N4O14P3">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_itp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/itp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ITP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13374" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16039" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19272" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43508" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57614" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5851" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61402" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00081" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM423" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00068" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C7H7O7" hasOnlySubstanceUnits="false" id="M_2mcit_c" metaid="M_2mcit_c"
-      name="2-Methylcitrate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2mcit_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2mcit" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-622" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10860" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11592" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11618" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1203" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15598" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19630" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19695" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19696" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30835" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30836" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:50948" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58853" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00379" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03610" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C02225" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01050442" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM90279" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01501" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd24620" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C16H24N2O16P2" hasOnlySubstanceUnits="false" id="M_dtdpglu_c" metaid="M_dtdpglu_c"
-      name="DTDPglucose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dtdpglu_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dtdpglu" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DTDP-D-GLUCOSE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10526" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10528" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14089" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14091" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15700" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23556" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57477" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62805" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00842" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1376" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00626" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C9H18O11P" hasOnlySubstanceUnits="false" id="M_g3pi_c" metaid="M_g3pi_c"
-      name="Sn-Glycero-3-phospho-1-inositol">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_g3pi_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/g3pi" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-541" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10645" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11200" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18321" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26695" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58444" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:64715" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB11649" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01225" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1517" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00902" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C5H9O8P2" hasOnlySubstanceUnits="false" id="M_h2mb4p_c" metaid="M_h2mb4p_c"
-      name="1-hydroxy-2-methyl-2-(E)-butenyl 4-diphosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_h2mb4p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/h2mb4p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:HYDROXY-METHYL-BUTENYL-DIP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10952" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:128753" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15664" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:632" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C11811" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMPR01010009" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM606" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd08615" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd29213" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="C6H8O8" hasOnlySubstanceUnits="false" id="M_galct__D_p" metaid="M_galct__D_p"
-      name="D-Galactarate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_galct__D_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/galct__D" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-GALACTARATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12929" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14285" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16537" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17444" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20944" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24135" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24136" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24137" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30852" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:33799" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35390" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4130" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48871" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5250" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00639" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03435" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00879" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01170107" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1080" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00652" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C6H9O7" hasOnlySubstanceUnits="false" id="M_glcur_p" metaid="M_glcur_p"
-      name="D-Glucuronate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_glcur_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/glcur" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-Glucopyranuronate" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12975" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15748" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21013" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24297" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24298" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4178" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:47952" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58720" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00191" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM241" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00164" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C30H52O26" hasOnlySubstanceUnits="false" id="M_maltpt_p" metaid="M_maltpt_p"
-      name="Maltopentaose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_maltpt_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/maltpt" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:MALTOPENTAOSE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61952" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:62006" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB12254" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.glycan/G00343" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1538" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15495" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="O4S" hasOnlySubstanceUnits="false" id="M_so4_p" metaid="M_so4_p" name="Sulfate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_so4_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/so4" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:HSO4" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:SULFATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15135" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16189" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26836" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29199" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45687" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45693" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45696" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9335" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01448" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00059" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D05963" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM58" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00048" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C25H46N6O8" hasOnlySubstanceUnits="false" id="M_feoxam_un_c" metaid="M_feoxam_un_c"
-      name="Ferroxamine minus Fe(3)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_feoxam_un_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/feoxam_un" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM90827" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15463" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="CH3O3S" hasOnlySubstanceUnits="false" id="M_mso3_c" metaid="M_mso3_c"
-      name="Methanesulfonate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_mso3_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/mso3" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-3746" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25224" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27376" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6813" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C11145" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1485" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd08023" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C11H16N3O7S" hasOnlySubstanceUnits="false" id="M_Sfglutth_c" metaid="M_Sfglutth_c"
-      name="S-Formylglutathione">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_Sfglutth_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/Sfglutth" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-548" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12746" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12764" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16225" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22044" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57688" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8956" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01550" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62625" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01031" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM952" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00759" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C33H66N1O8P1" hasOnlySubstanceUnits="false" id="M_pe140_c" metaid="M_pe140_c"
-      name="Phosphatidylethanolamine (ditetradecanoyl, n-C14:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pe140_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pe140" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-17087" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB05313" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB08821" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMGP02010352" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2859" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C30H57O13P2" hasOnlySubstanceUnits="false" id="M_pgp120_c" metaid="M_pgp120_c"
-      name="Phosphatidylglycerophosphate (didodecanoyl, n-C12:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pgp120_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pgp120" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM5266" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="C81H156O17P2" hasOnlySubstanceUnits="false" id="M_clpn180_p" metaid="M_clpn180_p"
-      name="Cardiolipin (tetraoctadecanoyl, n-C18:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_clpn180_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/clpn180" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM5079" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C23H48NO7P1" hasOnlySubstanceUnits="false" id="M_2agpe180_p" metaid="M_2agpe180_p"
-      name="2-Acyl-sn-glycero-3-phosphoethanolamine (n-C18:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2agpe180_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2agpe180" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2223" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:133144" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:133145" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB11129" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMGP02050038" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM34811" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15341" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd26450" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C6H13NO8P" hasOnlySubstanceUnits="false" id="M_gam6p_p" metaid="M_gam6p_p"
-      name="D-Glucosamine 6-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_gam6p_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/gam6p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-GLUCOSAMINE-6-P" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12962" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:47987" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58725" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00352" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM370" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00288" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="CH4O1" hasOnlySubstanceUnits="false" id="M_meoh_c" metaid="M_meoh_c" name="Methanol">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_meoh_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/meoh" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ALCOHOL-GROUP" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:METOH" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14588" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17790" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25227" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44080" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44553" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:52090" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6816" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01875" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00132" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D02309" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM157" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00116" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C12H10FeO14" hasOnlySubstanceUnits="false" id="M_fe3dcit_c" metaid="M_fe3dcit_c"
-      name="Fe(III)dicitrate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_fe3dcit_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/fe3dcit" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06229" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM146388" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03725" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C4H9NO4" hasOnlySubstanceUnits="false" id="M_4hthr_c" metaid="M_4hthr_c"
-      name="4-Hydroxy-L-threonine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_4hthr_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/4hthr" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2189" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1853" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20393" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28330" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:60904" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06056" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1802" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03608" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C6H5O7" hasOnlySubstanceUnits="false" id="M_cit_c" metaid="M_cit_c" name="Citrate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cit_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cit" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CIT" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:132362" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:133748" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13999" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16947" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23321" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23322" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30769" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35802" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35804" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35806" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35808" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35809" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35810" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:3727" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41523" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42563" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:76049" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:79399" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00094" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00158" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C13660" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00037" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM131" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00137" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C7H8O8P" hasOnlySubstanceUnits="false" id="M_skm5p_c" metaid="M_skm5p_c"
-      name="Shikimate 5-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_skm5p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/skm5p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:SHIKIMATE-5P" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11886" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:145989" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15084" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17052" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20195" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9134" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C03175" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1265" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02030" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C35H56N7O17P3S" hasOnlySubstanceUnits="false" id="M_td2coa_c" metaid="M_td2coa_c"
-      name="Trans-Tetradec-2-enoyl-CoA">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_td2coa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/td2coa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-15568" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10734" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27079" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27721" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61405" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03946" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB13082" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05273" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07050021" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07050396" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM654" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03127" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C6H9O7" hasOnlySubstanceUnits="false" id="M_tagur_c" metaid="M_tagur_c"
-      name="D-Tagaturonate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_tagur_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/tagur" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-TAGATURONATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13026" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17886" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21098" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21099" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4252" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58493" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:59451" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00558" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA05000654" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1423" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00437" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C8H15NO6" hasOnlySubstanceUnits="false" id="M_acgam_e" metaid="M_acgam_e"
-      name="N-Acetyl-D-glucosamine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_acgam_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/acgam" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:N-acetyl-D-glucosamine" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12455" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12563" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17411" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21517" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:506227" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58134" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7123" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00215" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00533" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB14288" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62641" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00140" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM143" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00122" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd27608" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-1" fbc:chemicalFormula="C9H16NO5" hasOnlySubstanceUnits="false" id="M_pnto__R_e" metaid="M_pnto__R_e"
-      name="(R)-Pantothenate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pnto__R_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pnto__R" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PANTOTHENATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11008" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14739" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16454" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18700" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18701" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25846" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29032" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44679" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46905" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7916" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00210" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62717" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00864" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D07413" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM364" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00644" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C16H24N2O15P2" hasOnlySubstanceUnits="false" id="M_dtdprmn_c" metaid="M_dtdprmn_c"
-      name="DTDP-L-rhamnose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dtdprmn_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dtdprmn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DTDP-RHAMNOSE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10518" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14083" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15774" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23547" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35452" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46114" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57510" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61119" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C03319" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM899" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02113" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C6H9O7" hasOnlySubstanceUnits="false" id="M_3dhguln_c" metaid="M_3dhguln_c"
-      name="3-Dehydro-L-gulonate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_3dhguln_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/3dhguln" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:3-KETO-L-GULONATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11777" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1482" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16142" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19992" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57655" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06334" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00618" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM736" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00473" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C6H6O2" hasOnlySubstanceUnits="false" id="M_hqn_c" metaid="M_hqn_c" name="Hydroquinone">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_hqn_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/hqn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:HYDROQUINONE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14416" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17594" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24645" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5793" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02434" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00530" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00073" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM376" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00415" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C8H13N2O5S" hasOnlySubstanceUnits="false" id="M_glucys_c" metaid="M_glucys_c"
-      name="Gamma-L-Glutamyl-L-cysteine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_glucys_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/glucys" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:L-GAMMA-GLUTAMYLCYSTEINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10566" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10570" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12400" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12404" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17515" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17971" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24185" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24194" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:39975" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58173" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00669" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM412" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00506" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-12" fbc:chemicalFormula="C6H6O24P6" hasOnlySubstanceUnits="false" id="M_minohp_e" metaid="M_minohp_e"
-      name="Myo-Inositol hexakisphosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_minohp_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/minohp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:MI-HEXAKISPHOSPHATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10603" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11366" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12829" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12832" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17401" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19200" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58130" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03502" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB60271" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01204" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM491" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00885" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd16891" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C2H3O2" hasOnlySubstanceUnits="false" id="M_ac_p" metaid="M_ac_p" name="Acetate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ac_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ac" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ACET" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13704" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15366" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22165" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22169" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2387" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30089" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40480" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40486" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00042" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00033" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00010" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01010002" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM26" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00029" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C36H62O31" hasOnlySubstanceUnits="false" id="M_malthx_p" metaid="M_malthx_p"
-      name="Maltohexaose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_malthx_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/malthx" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:MALTOHEXAOSE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25141" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27445" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61953" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6667" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB12253" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01936" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.glycan/G00755" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1317" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01329" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H10N2O3S" hasOnlySubstanceUnits="false" id="M_cgly_e" metaid="M_cgly_e"
-      name="Cys Gly C5H10N2O3S">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cgly_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cgly" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CYS-GLY" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4047" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61694" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00078" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB28775" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01419" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM683" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01017" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-3" fbc:chemicalFormula="C27H42N9O12" hasOnlySubstanceUnits="false" id="M_fecrm_un_p" metaid="M_fecrm_un_p"
-      name="Ferrichrome minus Fe(III)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_fecrm_un_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/fecrm_un" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2205" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM53290" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15462" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-11" fbc:chemicalFormula="C312H523N6O200P4" hasOnlySubstanceUnits="false" id="M_o16a4colipa_p"
-      metaid="M_o16a4colipa_p" name="(O16 antigen)x4 core oligosaccharide lipid A">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_o16a4colipa_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/o16a4colipa" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM91789" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15518" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-3" fbc:chemicalFormula="AsO3" hasOnlySubstanceUnits="false" id="M_aso3_p" metaid="M_aso3_p" name="Arsenite">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_aso3_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/aso3" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-763" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2040" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13857" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22635" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2846" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29242" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29243" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29866" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49899" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49900" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB11620" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06697" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM658" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd04098" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd26385" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="C4H8NO6P" hasOnlySubstanceUnits="false" id="M_thrp_p" metaid="M_thrp_p"
-      name="L-Threonine O-3-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_thrp_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/thrp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:L-THREONINE-O-3-PHOSPHATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21967" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:31757" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:37525" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45955" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58675" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C12147" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1492" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd08928" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C3H7NO2S" hasOnlySubstanceUnits="false" id="M_cys__D_p" metaid="M_cys__D_p"
-      name="D-Cysteine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cys__D_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cys__D" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-CYSTEINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12919" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16375" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20921" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32449" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32450" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32451" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35236" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4111" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41887" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03417" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00793" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2112" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00587" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="1" fbc:chemicalFormula="Ag" hasOnlySubstanceUnits="false" id="M_ag_c" metaid="M_ag_c" name="Silver">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ag_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ag" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30051" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49467" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49468" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02659" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06710" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM5928" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd04100" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C15H29O7P1" hasOnlySubstanceUnits="false" id="M_1ddecg3p_c" metaid="M_1ddecg3p_c"
-      name="1-dodecanoyl-sn-glycerol 3-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_1ddecg3p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/1ddecg3p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2200" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:62840" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:72682" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMGP10050015" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM4232" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15325" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C37H70N1O8P1" hasOnlySubstanceUnits="false" id="M_pe161_p" metaid="M_pe161_p"
-      name="Phosphatidylethanolamine (dihexadec-9enoyl, n-C16:1)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pe161_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pe161" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-17086" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB05342" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB08957" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMGP02010108" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM71458" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd29055" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C42H82O10P1" hasOnlySubstanceUnits="false" id="M_pg180_p" metaid="M_pg180_p"
-      name="Phosphatidylglycerol (dioctadecanoyl, n-C18:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pg180_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pg180" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-12822" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB10602" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMGP04010038" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM75102" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15540" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd23600" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C21H40O7P1" hasOnlySubstanceUnits="false" id="M_2odec11eg3p_p" metaid="M_2odec11eg3p_p"
-      name="2-octadec-11-enoyl-sn-glycerol 3-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2odec11eg3p_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2odec11eg3p" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM5480" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15357" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C3H8O2" hasOnlySubstanceUnits="false" id="M_12ppd__R_e" metaid="M_12ppd__R_e"
-      name="(R)-Propane-1,2-diol">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_12ppd__R_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/12ppd__R" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-8891" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18705" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28972" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:352" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44863" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C02912" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM90191" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01861" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C19H40NO7P1" hasOnlySubstanceUnits="false" id="M_1agpe140_p" metaid="M_1agpe140_p"
-      name="1-Acyl-sn-glycero-3-phosphoethanolamine (n-C14:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_1agpe140_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/1agpe140" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2147" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:84299" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:85215" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB11500" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMGP02050003" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM32693" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd26431" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C29H38N7O18P3S" hasOnlySubstanceUnits="false" id="M_rephaccoa_c" metaid="M_rephaccoa_c"
-      name="Ring 1,2-epoxyphenylacetyl-CoA">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_rephaccoa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/rephaccoa" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM148501" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="2" fbc:chemicalFormula="S2Fe2" hasOnlySubstanceUnits="false" id="M_2fe2s_c" metaid="M_2fe2s_c"
-      name="[2Fe-2S] iron-sulfur cluster">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2fe2s_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2fe2s" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21134" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49600" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49601" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:64605" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM151647" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd24604" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C6H7O7" hasOnlySubstanceUnits="false" id="M_23doguln_p" metaid="M_23doguln_p"
-      name="2,3-Dioxo-L-gulonate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_23doguln_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/23doguln" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-19692" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-334" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10900" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15622" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18578" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:226" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57441" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:60793" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB05971" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06511" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62803" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C04575" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01060195" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM958" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02784" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C6H9O9P" hasOnlySubstanceUnits="false" id="M_6pgl_c" metaid="M_6pgl_c"
-      name="6-phospho-D-glucono-1,5-lactone">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_6pgl_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/6pgl" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-6-P-GLUCONO-DELTA-LACTONE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12233" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12958" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16938" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20989" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4160" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57955" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62628" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01236" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM429" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00911" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="2" fbc:chemicalFormula="C4H14N2" hasOnlySubstanceUnits="false" id="M_ptrc_c" metaid="M_ptrc_c" name="Putrescine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ptrc_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ptrc" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PUTRESCINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14972" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17148" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26405" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:326268" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45092" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8650" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01414" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB60243" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00134" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM118" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00118" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd12215" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C7H10O10P" hasOnlySubstanceUnits="false" id="M_2dda7p_c" metaid="M_2dda7p_c"
-      name="2-Dehydro-3-deoxy-D-arabino-heptonate 7-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2dda7p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2dda7p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:3-DEOXY-D-ARABINO-HEPTULOSONATE-7-P" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1053" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11544" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11785" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11786" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18150" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19523" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20003" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29477" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58394" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C04691" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1219" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02857" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C11H12NO8" hasOnlySubstanceUnits="false" id="M_sl2a6o_c" metaid="M_sl2a6o_c"
-      name="N-Succinyl-2-L-amino-6-oxoheptanedioate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_sl2a6o_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/sl2a6o" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:N-SUCCINYL-2-AMINO-6-KETOPIMELATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10967" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12616" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15685" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21789" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21790" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35266" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7340" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB12266" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C04462" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1563" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02724" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C9H12N3O8P" hasOnlySubstanceUnits="false" id="M_cmp_c" metaid="M_cmp_c"
-      name="CMP C9H12N3O8P">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cmp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cmp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CMP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13274" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17361" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23520" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:3275" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41312" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41319" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41666" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41691" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:47362" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48799" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58120" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:60377" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00055" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.glycan/G10621" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM31" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00046" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C10H12N5O14P3" hasOnlySubstanceUnits="false" id="M_gtp_c" metaid="M_gtp_c"
-      name="GTP C10H12N5O14P3">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_gtp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/gtp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GTP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13342" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15996" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24451" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:37565" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42934" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5234" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57600" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00044" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM51" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00038" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C17H25N3O17P2" hasOnlySubstanceUnits="false" id="M_uacgam_c" metaid="M_uacgam_c"
-      name="UDP-N-acetyl-D-glucosamine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_uacgam_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/uacgam" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:UDP-N-ACETYL-D-GLUCOSAMINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13456" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13473" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13475" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13476" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16264" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22115" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46243" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46287" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57705" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9823" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62760" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00043" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.glycan/G10610" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMSL01010002" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM47" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00037" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C20H26N3O19P2" hasOnlySubstanceUnits="false" id="M_uaccg_c" metaid="M_uaccg_c"
-      name="UDP-N-acetyl-3-O-(1-carboxyvinyl)-D-glucosamine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_uaccg_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/uaccg" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:UDP-ACETYL-CARBOXYVINYL-GLUCOSAMINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13466" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13467" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16435" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22110" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57771" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:68483" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:68507" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9818" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C04631" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1688" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02820" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C68H127N2O20P" hasOnlySubstanceUnits="false" id="M_lipidAds_c" metaid="M_lipidAds_c"
-      name="Lipid A Disaccharide">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_lipidAds_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/lipidAds" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:BISOHMYR-GLC" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11414" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11415" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18380" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19293" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58466" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:862" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C04932" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1569" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03002" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C6H11O8P" hasOnlySubstanceUnits="false" id="M_fc1p_c" metaid="M_fc1p_c"
-      name="L-Fuculose 1-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_fc1p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/fc1p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:FUCULOSE-1P" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13104" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13105" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16647" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21296" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57846" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6220" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01099" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1749" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00806" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C10H15N2O3S" hasOnlySubstanceUnits="false" id="M_btn_c" metaid="M_btn_c" name="Biotin">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_btn_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/btn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:BIOTIN" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13905" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15956" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22882" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22884" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:3108" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41236" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57586" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00030" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00120" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00029" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM304" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00104" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-1" fbc:chemicalFormula="C62H88CoN13O14P" hasOnlySubstanceUnits="false" id="M_cbl1_e" metaid="M_cbl1_e"
-      name="Cob(I)alamin">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cbl1_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cbl1" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:COB-I-ALAMIN" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14004" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15982" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23328" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:3784" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:60488" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03429" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06470" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00853" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM91519" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H10O5" hasOnlySubstanceUnits="false" id="M_xylu__L_c" metaid="M_xylu__L_c"
-      name="L-Xylulose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_xylu__L_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/xylu__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-XYLULOSE" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:L-XYLULOSE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13035" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13190" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17140" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17399" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21120" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21425" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27353" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4268" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46514" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6326" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00654" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00751" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01644" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02245" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00310" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00312" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM597" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00259" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00261" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H10O5" hasOnlySubstanceUnits="false" id="M_xylu__L_e" metaid="M_xylu__L_e"
-      name="L-Xylulose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_xylu__L_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/xylu__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-XYLULOSE" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:L-XYLULOSE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13035" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13190" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17140" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17399" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21120" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21425" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27353" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4268" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46514" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6326" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00654" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00751" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01644" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02245" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00310" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00312" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM597" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00259" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00261" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="1" fbc:chemicalFormula="C6H15N4O2" hasOnlySubstanceUnits="false" id="M_arg__L_p" metaid="M_arg__L_p"
-      name="L-Arginine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_arg__L_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/arg__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ARG" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13077" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:133495" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16467" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21235" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22616" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2643" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29016" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32681" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32682" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32683" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32695" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32696" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32697" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42927" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6185" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00517" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62762" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00062" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C02385" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D02982" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM70" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00051" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd19021" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="1" fbc:chemicalFormula="C6H14NO5" hasOnlySubstanceUnits="false" id="M_gam_p" metaid="M_gam_p"
-      name="D-Glucosamine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_gam_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/gam" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLUCOSAMINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12961" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17315" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4162" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:47972" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:47977" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5417" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58723" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00329" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D04334" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM533" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00276" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01247" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd27103" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H11NO2" hasOnlySubstanceUnits="false" id="M_glyb_p" metaid="M_glyb_p"
-      name="Glycine betaine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_glyb_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/glyb" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:BETAINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12531" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13895" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15264" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17750" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22858" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24370" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27128" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29050" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:3073" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41134" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41139" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00043" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00719" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D07523" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM289" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00540" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C3H5O3" hasOnlySubstanceUnits="false" id="M_lac__L_p" metaid="M_lac__L_p"
-      name="L-Lactate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_lac__L_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/lac__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:L-LACTATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11065" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12411" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16651" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18783" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:422" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00190" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03328" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62492" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00186" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM179" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00159" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C8H9NO3" hasOnlySubstanceUnits="false" id="M_pydx_e" metaid="M_pydx_e" name="Pyridoxal">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pydx_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pydx" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PYRIDOXAL" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:131530" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14976" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17310" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26423" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45112" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8667" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01545" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00250" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM311" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00215" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H11NO3S" hasOnlySubstanceUnits="false" id="M_metsox_R__L_c" metaid="M_metsox_R__L_c"
-      name="L-methionine-R-sulfoxide">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_metsox_R__L_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/metsox_R__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-8989" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-8990" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:L-Methionine-sulfoxides" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13142" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17016" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21361" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49031" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49032" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58772" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58773" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6272" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C02989" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C15998" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C15999" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2246" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01914" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd14720" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd14721" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15497" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15498" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd29319" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C11H18N3O7S" hasOnlySubstanceUnits="false" id="M_hmgth_c" metaid="M_hmgth_c"
-      name="Hydroxymethylglutathione">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_hmgth_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/hmgth" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:S-HYDROXYMETHYLGLUTATHIONE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22052" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:34963" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40619" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48926" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58758" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB04662" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C14180" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1051" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd09879" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15487" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-2" fbc:chemicalFormula="O4Se" hasOnlySubstanceUnits="false" id="M_sel_e" metaid="M_sel_e" name="Selenate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_sel_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/sel" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:SELENATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15075" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18170" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26624" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:33490" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9088" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62761" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05697" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2282" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03396" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-1" fbc:chemicalFormula="C3H5O4" hasOnlySubstanceUnits="false" id="M_glyc__R_e" metaid="M_glyc__R_e"
-      name="(R)-Glycerate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_glyc__R_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/glyc__R" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLYCERATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10999" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12985" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16659" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21027" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21030" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24348" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24349" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32398" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:33508" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:33846" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:33871" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4187" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41990" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00139" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00258" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM189" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00223" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-15" fbc:chemicalFormula="C272H447N14O160P4" hasOnlySubstanceUnits="false" id="M_eca4colipa_e"
-      metaid="M_eca4colipa_e" name="(enterobacterial common antigen)x4 core oligosaccharide lipid A">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_eca4colipa_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/eca4colipa" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM91786" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15457" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="NO" hasOnlySubstanceUnits="false" id="M_no_c" metaid="M_no_c" name="Nitric oxide">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_no_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/no" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:NITRIC-OXIDE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14657" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16480" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25546" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44452" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7583" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03378" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00533" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00074" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM228" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="CHN" hasOnlySubstanceUnits="false" id="M_cyan_e" metaid="M_cyan_e"
-      name="Hydrogen cyanide">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cyan_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cyan" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-13584" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:HCN" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13362" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14038" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17514" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18407" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:36856" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:3969" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41780" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5786" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB60292" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00177" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01326" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C18673" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM254" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00150" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd19012" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C4H9NO3" hasOnlySubstanceUnits="false" id="M_hom__L_p" metaid="M_hom__L_p"
-      name="L-Homoserine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_hom__L_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/hom__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:HOMO-SER" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13123" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15699" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21330" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43131" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57476" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6246" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00719" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00263" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM353" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00227" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C23H43N2O9PRS" hasOnlySubstanceUnits="false" id="M_3hddecACP_c" metaid="M_3hddecACP_c"
-      name="(R)-3-Hydroxydodecanoyl-[acyl-carrier protein]">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_3hddecACP_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/3hddecACP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:325" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05757" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07060015" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM27066" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd11480" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C23H41N2O8PRS" hasOnlySubstanceUnits="false" id="M_cddec5eACP_c" metaid="M_cddec5eACP_c"
-      name="Cis-dodec-5-enoyl-[acyl-carrier protein] (n-C12:1)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cddec5eACP_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cddec5eACP" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM163784" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C10H16N3O6S" hasOnlySubstanceUnits="false" id="M_gthrd_p" metaid="M_gthrd_p"
-      name="Reduced glutathione">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_gthrd_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/gthrd" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLUTATHIONE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12402" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14327" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16856" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24334" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42873" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43049" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5437" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57925" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00125" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01463" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06960" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62697" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00051" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00014" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM57" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00042" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="C21H39O7P1" hasOnlySubstanceUnits="false" id="M_1odec11eg3p_p" metaid="M_1odec11eg3p_p"
-      name="1-octadec-11-enoyl-sn-glycerol 3-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_1odec11eg3p_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/1odec11eg3p" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM91049" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15328" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="H8O2S6R" hasOnlySubstanceUnits="false" id="M_iscu_c" metaid="M_iscu_c"
-      name="IscU scaffold protein">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_iscu_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/iscu" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM147128" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C16H22N6O7S" hasOnlySubstanceUnits="false" id="M_cxsam_c" metaid="M_cxsam_c"
-      name="Carboxy-S-adenosyl-L-methionine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cxsam_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cxsam" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="CH3O3Te" hasOnlySubstanceUnits="false" id="M_mteo2_c" metaid="M_mteo2_c"
-      name="Methanetelluronate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_mteo2_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/mteo2" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C3H8O3" hasOnlySubstanceUnits="false" id="M_glyc_c" metaid="M_glyc_c" name="Glycerol">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_glyc_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/glyc" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLYCEROL" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:131422" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14334" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17754" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24351" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42998" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5448" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00131" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00116" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00028" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM89612" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00100" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H11NO2" hasOnlySubstanceUnits="false" id="M_val__L_c" metaid="M_val__L_c"
-      name="L-Valine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_val__L_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/val__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:VAL" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13186" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16414" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21417" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27266" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32851" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32852" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32859" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32860" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46282" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46376" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46418" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46484" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57762" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6321" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:87977" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00883" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB34366" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00183" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C16436" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00039" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01100046" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM199" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00156" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15141" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C5H6N2O5" hasOnlySubstanceUnits="false" id="M_cbasp_c" metaid="M_cbasp_c"
-      name="N-Carbamoyl-L-aspartate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cbasp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cbasp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CARBAMYUL-L-ASPARTATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12496" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12593" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15859" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21687" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21688" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32814" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44316" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7257" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00438" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM465" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00343" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C51H72O2" hasOnlySubstanceUnits="false" id="M_mqn8_c" metaid="M_mqn8_c"
-      name="Menaquinone 8">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_mqn8_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/mqn8" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-9728" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44027" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM509" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15500" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C6H12O5" hasOnlySubstanceUnits="false" id="M_fuc__L_e" metaid="M_fuc__L_e"
-      name="L-Fucose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_fuc__L_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/fuc__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-15619" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:L-fucoses" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48204" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62489" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM40586" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C42H72O36" hasOnlySubstanceUnits="false" id="M_malthp_c" metaid="M_malthp_c"
-      name="Maltoheptaose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_malthp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/malthp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-1133" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:62010" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB13000" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.glycan/G00689" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM61025" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15494" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-2" fbc:chemicalFormula="O3S2" hasOnlySubstanceUnits="false" id="M_tsul_e" metaid="M_tsul_e" name="Thiosulfate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_tsul_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/tsul" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:S2O3" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15242" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16094" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26977" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29279" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:33539" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:33540" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:33541" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:33542" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45922" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5587" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9569" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00257" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00320" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05529" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM323" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00268" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-6" fbc:chemicalFormula="C114H202N2O39P2" hasOnlySubstanceUnits="false" id="M_lipa_cold_c" metaid="M_lipa_cold_c"
-      name="Cold adapted KDO(2)-lipid (A)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_lipa_cold_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/lipa_cold" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:KDO2-LIPID-IVA-COLD" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61522" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61556" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM6016" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15493" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-1" fbc:chemicalFormula="C6H11O2" hasOnlySubstanceUnits="false" id="M_hxa_e" metaid="M_hxa_e"
-      name="Hexanoate (n-C6:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_hxa_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/hxa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:HEXANOATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14398" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17120" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24569" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24571" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30776" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40213" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5702" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00535" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB61883" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01585" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01010006" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1653" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01113" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C9H18O6N3Fe" hasOnlySubstanceUnits="false" id="M_fe3hox_c" metaid="M_fe3hox_c"
-      name="Fe(III)hydroxamate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_fe3hox_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/fe3hox" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2114" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21131" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28163" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4992" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06227" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM57764" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd12843" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C6H13NO2" hasOnlySubstanceUnits="false" id="M_leu__L_p" metaid="M_leu__L_p"
-      name="L-Leucine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_leu__L_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/leu__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:LEU" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10866" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13131" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15603" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21348" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25017" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32619" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32620" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32627" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32628" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43646" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43695" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43733" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43814" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57427" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6260" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00687" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62203" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00123" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C16439" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00030" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01100048" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM140" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00107" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15143" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H10O5" hasOnlySubstanceUnits="false" id="M_lyx__L_p" metaid="M_lyx__L_p"
-      name="L-Lyxose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_lyx__L_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/lyx__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-15867" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:62321" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01508" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM4641" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01067" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C2H7NO3S" hasOnlySubstanceUnits="false" id="M_taur_p" metaid="M_taur_p"
-      name="Taurine C2H7NO3S">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_taur_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/taur" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TAURINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15195" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15891" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26852" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32970" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45877" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:507393" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9406" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00251" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00245" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00047" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM282" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00210" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="H2O2" hasOnlySubstanceUnits="false" id="M_h2o2_p" metaid="M_h2o2_p"
-      name="Hydrogen peroxide">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_h2o2_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/h2o2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:HYDROGEN-PEROXIDE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13354" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13355" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16240" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24637" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25940" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29192" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29370" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44782" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44785" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44812" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5586" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03125" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06491" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00027" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C17732" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C18566" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00008" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM22" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00025" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-2" fbc:chemicalFormula="C10H11N4O7P" hasOnlySubstanceUnits="false" id="M_dimp_e" metaid="M_dimp_e"
-      name="DIMP C10H12N4O7P">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dimp_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dimp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DIMP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19250" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28806" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41998" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43315" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43377" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43384" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43389" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44500" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61194" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:837" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06555" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06196" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1922" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03704" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-2" fbc:chemicalFormula="C9H11N2O9P" hasOnlySubstanceUnits="false" id="M_3ump_e" metaid="M_3ump_e"
-      name="3  UMP C9H11N2O9P">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_3ump_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/3ump" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-3724" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1361" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27229" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28895" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46259" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:556513" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:60784" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB60282" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01368" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2184" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00989" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C19H29N2O12" hasOnlySubstanceUnits="false" id="M_anhgm_p" metaid="M_anhgm_p"
-      name="N-Acetyl-D-glucosamine(anhydrous)N-Acetylmuramic acid">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_anhgm_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/anhgm" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM3060" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15396" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-1" fbc:chemicalFormula="C2H5O3S" hasOnlySubstanceUnits="false" id="M_ethso3_e" metaid="M_ethso3_e"
-      name="Ethanesulfonate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ethso3_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ethso3" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-10434" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42465" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61909" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM7343" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd11579" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="N2O" hasOnlySubstanceUnits="false" id="M_n2o_p" metaid="M_n2o_p" name="Nitrous oxide">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_n2o_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/n2o" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:NITROUS-OXIDE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14661" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17045" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25568" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44250" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7598" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB35807" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00887" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00102" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM579" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00659" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="C15H22N2O17P2" hasOnlySubstanceUnits="false" id="M_udpgal_p" metaid="M_udpgal_p"
-      name="UDPgalactose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_udpgal_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/udpgal" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-14553" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13487" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13495" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18307" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22100" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42751" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58439" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:66914" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:67119" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9811" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62573" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00052" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.glycan/G10609" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM89795" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00043" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd30770" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C23H41N2O9PRS" hasOnlySubstanceUnits="false" id="M_3oddecACP_c" metaid="M_3oddecACP_c"
-      name="3-Oxododecanoyl-[acyl-carrier protein]">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_3oddecACP_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/3oddecACP" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:3-oxo-dodecanoyl-ACPs" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1637" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05756" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07060014" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM28933" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd11489" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C42H78O10P1" hasOnlySubstanceUnits="false" id="M_pg181_c" metaid="M_pg181_c"
-      name="Phosphatidylglycerol (dioctadec-11-enoyl, n-C18:1)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pg181_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pg181" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-18396" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1773" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C31H56O5" hasOnlySubstanceUnits="false" id="M_12dgr141_c" metaid="M_12dgr141_c"
-      name="1,2-Diacyl-sn-glycerol (ditetradec-7-enoyl, n-C14:1)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_12dgr141_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/12dgr141" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM4940" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C29H53N2O9PRS" hasOnlySubstanceUnits="false" id="M_3ooctdACP_c" metaid="M_3ooctdACP_c"
-      name="3-Oxooctadecanoyl-[acyl-carrier protein]">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_3ooctdACP_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/3ooctdACP" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM3491" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15377" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-3" fbc:chemicalFormula="C38H69O13P2" hasOnlySubstanceUnits="false" id="M_pgp161_p" metaid="M_pgp161_p"
-      name="Phosphatidylglycerophosphate (dihexadec-9-enoyl, n-C16:1)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pgp161_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pgp161" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2230" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM75103" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15546" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd26451" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C12H23O2" hasOnlySubstanceUnits="false" id="M_ddca_c" metaid="M_ddca_c"
-      name="Dodecanoate (n-C12:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ddca_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ddca" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM162258" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C6H3O6" hasOnlySubstanceUnits="false" id="M_acon_C_c" metaid="M_acon_C_c"
-      name="Cis-Aconitate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_acon_C_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/acon_C" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CIS-ACONITATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10482" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12798" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16383" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23306" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23308" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32805" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00072" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00461" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00417" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM813" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00331" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-5" fbc:chemicalFormula="C27H37N7O19P3S" hasOnlySubstanceUnits="false" id="M_23dhacoa_c" metaid="M_23dhacoa_c"
-      name="2,3-dehydroadipyl-CoA">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_23dhacoa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/23dhacoa" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:67261" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:68471" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07050165" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM9750" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-5" fbc:chemicalFormula="C27H39N7O20P3S" hasOnlySubstanceUnits="false" id="M_3hadpcoa_c" metaid="M_3hadpcoa_c"
-      name="(3S)-3-Hydroxyadipyl-CoA">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_3hadpcoa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/3hadpcoa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:3-HYDROXYADIPYL-COA" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:132183" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:34002" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:70990" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:71038" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB12475" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C14145" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07050117" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07050211" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2784" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd09844" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C6H12O5" hasOnlySubstanceUnits="false" id="M_2dglc_p" metaid="M_2dglc_p"
-      name="2 Deoxy D glucose C6H12O5">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2dglc_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2dglc" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1078" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11565" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11569" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15866" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19553" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57546" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:84755" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:90760" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00586" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2925" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00455" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C21H26N7O17P3" hasOnlySubstanceUnits="false" id="M_nadph_c" metaid="M_nadph_c"
-      name="Nicotinamide adenine dinucleotide phosphate - reduced">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_nadph_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/nadph" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:NADPH" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13399" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13400" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16474" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21904" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44286" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57783" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7425" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00221" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00799" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06341" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00005" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM6" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00005" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C7H9NO5" hasOnlySubstanceUnits="false" id="M_acglu_c" metaid="M_acglu_c"
-      name="N-Acetyl-L-glutamate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_acglu_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/acglu" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ACETYL-GLU" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12575" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17533" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21549" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21552" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44335" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44337" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:64040" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7150" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:87274" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00624" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM730" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00477" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C4H5O3" hasOnlySubstanceUnits="false" id="M_2obut_c" metaid="M_2obut_c"
-      name="2-Oxobutanoate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2obut_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2obut" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:2-OXOBUTANOATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11636" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1250" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16763" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19741" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19743" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30831" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:39748" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00109" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01060002" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM159" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00094" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C5H9O7P2" hasOnlySubstanceUnits="false" id="M_dmpp_c" metaid="M_dmpp_c"
-      name="Dimethylallyl diphosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dmpp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dmpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-4211" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12280" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14169" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14883" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16057" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18108" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23803" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26245" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:341937" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42074" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4616" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57623" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8394" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01120" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02101" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00235" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMPR01010001" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM132" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00202" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C17H22N4O6" hasOnlySubstanceUnits="false" id="M_rbflvrd_c" metaid="M_rbflvrd_c"
-      name="Reduced riboflavin">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_rbflvrd_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/rbflvrd" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-316" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17607" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26527" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8798" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01007" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1246" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00739" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C6H10O12P2" hasOnlySubstanceUnits="false" id="M_tagdp__D_c" metaid="M_tagdp__D_c"
-      name="D-Tagatose 1,6-biphosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_tagdp__D_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/tagdp__D" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TAGATOSE-1-6-DIPHOSPHATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13024" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16743" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21096" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4250" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58694" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06872" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C03785" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1324" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02371" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd29681" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C7H15NO3" hasOnlySubstanceUnits="false" id="M_crn_c" metaid="M_crn_c" name="L-Carnitine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_crn_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/crn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CARNITINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11817" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13091" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13947" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16347" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17126" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20047" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21256" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23038" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29085" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:3424" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:39547" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6202" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00062" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01467" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62496" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00318" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00487" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D02176" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM173" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00266" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd19003" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C21H24N6O15P2" hasOnlySubstanceUnits="false" id="M_dnad_c" metaid="M_dnad_c"
-      name="Deamino-NAD+">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dnad_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dnad" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DEAMIDO-NAD" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14103" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14104" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14105" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18304" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23567" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4340" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58437" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00857" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM309" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00638" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H9NO2" hasOnlySubstanceUnits="false" id="M_pro__L_c" metaid="M_pro__L_c"
-      name="L-Proline">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pro__L_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pro__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PRO" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13154" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17203" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:184637" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21373" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26271" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32862" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32864" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32871" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32872" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42067" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45040" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45100" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45159" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58054" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:60039" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6286" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00162" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00148" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C16435" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00035" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM114" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00129" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15140" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C3H7NO2" hasOnlySubstanceUnits="false" id="M_ala_B_e" metaid="M_ala_B_e"
-      name="Beta-Alanine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ala_B_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ala_B" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:B-ALANINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10343" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12389" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16958" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22821" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41050" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57966" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:63070" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00056" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00099" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D07561" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM144" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00085" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C3H5O3" hasOnlySubstanceUnits="false" id="M_lac__D_p" metaid="M_lac__D_p"
-      name="D-Lactate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_lac__D_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/lac__D" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-LACTATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11001" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16004" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18684" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:341" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42105" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42111" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43701" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00171" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01311" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00256" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM285" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00221" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C3H7NO2" hasOnlySubstanceUnits="false" id="M_ala__D_p" metaid="M_ala__D_p"
-      name="D-Alanine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ala__D_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ala__D" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-ALANINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10840" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12899" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15570" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20893" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32435" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32436" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4087" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41756" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41798" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41848" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41877" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57416" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01310" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00133" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM156" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00117" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-2" fbc:chemicalFormula="C9H12N3O8P" hasOnlySubstanceUnits="false" id="M_3cmp_e" metaid="M_3cmp_e"
-      name="3  CMP C9H12N3O8P">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_3cmp_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/3cmp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-3711" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1335" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23517" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28929" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41345" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41615" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:53013" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:60875" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05822" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2182" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03454" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C3H7NO2" hasOnlySubstanceUnits="false" id="M_sarcs_c" metaid="M_sarcs_c"
-      name="Sarcosine C3H7NO2">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_sarcs_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/sarcs" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:SARCOSINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10876" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12609" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15065" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15611" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21765" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45381" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45442" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45531" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45614" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46842" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46915" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57433" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9029" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00271" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00213" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM300" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00183" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-1" fbc:chemicalFormula="C4H9O3S" hasOnlySubstanceUnits="false" id="M_butso3_e" metaid="M_butso3_e"
-      name="Butanesulfonate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_butso3_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/butso3" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM7138" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd11596" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="C8H14NO9P" hasOnlySubstanceUnits="false" id="M_acgal1p_p" metaid="M_acgal1p_p"
-      name="N-Acetyl-D-galactosamine 1-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_acgal1p_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/acgal1p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-7246" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44313" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:55404" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61970" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06480" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB59626" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C18060" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2401" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15390" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd18043" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-2" fbc:chemicalFormula="C8H14NO9P" hasOnlySubstanceUnits="false" id="M_acgal1p_e" metaid="M_acgal1p_e"
-      name="N-Acetyl-D-galactosamine 1-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_acgal1p_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/acgal1p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-7246" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44313" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:55404" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61970" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06480" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB59626" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C18060" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2401" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15390" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd18043" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C3H5NO4S" hasOnlySubstanceUnits="false" id="M_3sala_c" metaid="M_3sala_c"
-      name="3-Sulfino-L-alanine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_3sala_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/3sala" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:3-SULFINOALANINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11888" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11889" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16345" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1664" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21271" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:224037" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41618" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41721" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61085" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8973" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00996" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00606" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM498" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00467" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C21H39N2O9PRS" hasOnlySubstanceUnits="false" id="M_3hdecACP_c" metaid="M_3hdecACP_c"
-      name="(R)-3-Hydroxydecanoyl-[acyl-carrier protein]">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_3hdecACP_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/3hdecACP" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:Beta-hydroxydecanoyl-ACPs" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C04619" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM7127" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd11482" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C21H37N2O8PRS" hasOnlySubstanceUnits="false" id="M_cdec3eACP_c" metaid="M_cdec3eACP_c"
-      name="Cis-dec-3-enoyl-[acyl-carrier protein] (n-C10:1)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cdec3eACP_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cdec3eACP" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM7186" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C25H45N2O9PRS" hasOnlySubstanceUnits="false" id="M_3hcmrs7eACP_c"
-      metaid="M_3hcmrs7eACP_c" name="(R)-3-hydroxy-cis-myristol-7-eoyl-[acyl-carrier protein]">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_3hcmrs7eACP_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/3hcmrs7eACP" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM5390" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15368" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C37H70N1O8P1" hasOnlySubstanceUnits="false" id="M_pe161_c" metaid="M_pe161_c"
-      name="Phosphatidylethanolamine (dihexadec-9enoyl, n-C16:1)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pe161_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pe161" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-17086" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB05342" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB08957" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMGP02010108" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM71458" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd29055" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C21H42O7P1" hasOnlySubstanceUnits="false" id="M_2odecg3p_p" metaid="M_2odecg3p_p"
-      name="2-octadecanoyl-sn-glycerol 3-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2odecg3p_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2odecg3p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-17274" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB07850" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMGP10050043" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM5481" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15358" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="C17H33O7P1" hasOnlySubstanceUnits="false" id="M_1tdecg3p_p" metaid="M_1tdecg3p_p"
-      name="1-tetradecanoyl-sn-glycerol 3-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_1tdecg3p_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/1tdecg3p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-18379" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:62833" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:72683" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62321" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMGP10050007" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM3426" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15331" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="1" fbc:chemicalFormula="C12H25N2O7" hasOnlySubstanceUnits="false" id="M_psclys_e" metaid="M_psclys_e"
-      name="Psicoselysine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_psclys_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/psclys" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PSICOSELYSINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61403" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61425" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM6409" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15559" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="C4H4O6" hasOnlySubstanceUnits="false" id="M_tartr__D_p" metaid="M_tartr__D_p"
-      name="D-tartrate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_tartr__D_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/tartr__D" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-TARTRATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11077" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15672" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18806" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18807" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30927" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35399" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:446" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45873" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB29878" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C02107" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM7948" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd19018" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="3" fbc:chemicalFormula="C8H24N3" hasOnlySubstanceUnits="false" id="M_na15dap_c" metaid="M_na15dap_c"
-      name="N-3-aminopropyl-1,5-diaminopentane">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_na15dap_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/na15dap" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-1065" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:64858" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:64860" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB12189" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C16565" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM6170" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd16379" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C7H12O6" hasOnlySubstanceUnits="false" id="M_quin_e" metaid="M_quin_e" name="Quinate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_quin_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/quin" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:QUINATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15000" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17521" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26489" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26492" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29751" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8715" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00296" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM474" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00248" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C3H4NO2" hasOnlySubstanceUnits="false" id="M_3amac_c" metaid="M_3amac_c"
-      name="3-Aminoacrylate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_3amac_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/3amac" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2339" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:59893" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:59894" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C20253" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM162288" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd21486" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="3" fbc:chemicalFormula="C30H29FeN3O16" hasOnlySubstanceUnits="false" id="M_fe3dhbzs3_c" metaid="M_fe3dhbzs3_c"
-      name="2-3-dihydroxybenzoylserine trimer-Fe-III">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_fe3dhbzs3_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/fe3dhbzs3" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM146250" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C9H12N2O6" hasOnlySubstanceUnits="false" id="M_psuri_e" metaid="M_psuri_e"
-      name="Pseudouridine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_psuri_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/psuri" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C3H3O3" hasOnlySubstanceUnits="false" id="M_pyr_c" metaid="M_pyr_c" name="Pyruvate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pyr_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pyr" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PYRUVATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14987" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15361" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26462" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26466" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32816" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45253" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:86354" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8685" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00243" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62676" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00022" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01060077" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM23" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00020" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C9H11N2O8P" hasOnlySubstanceUnits="false" id="M_dump_c" metaid="M_dump_c"
-      name="DUMP C9H11N2O8P">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dump_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dump" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DUMP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10532" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14094" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17622" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19263" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:246422" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42245" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46286" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46288" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:47722" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01409" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00365" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM234" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00299" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C6H8NO4PS" hasOnlySubstanceUnits="false" id="M_4mpetz_c" metaid="M_4mpetz_c"
-      name="4-Methyl-5-(2-phosphoethyl)-thiazole">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_4mpetz_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/4mpetz" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:THZ-P" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12023" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12024" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17857" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1892" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20439" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30638" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46182" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58296" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C04327" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM960" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02654" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C5H9O8P" hasOnlySubstanceUnits="false" id="M_ru5p__L_c" metaid="M_ru5p__L_c"
-      name="L-Ribulose 5-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ru5p__L_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ru5p__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:L-RIBULOSE-5-P" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13164" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17666" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21383" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58226" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6296" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01101" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM901" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00808" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C12H22O11" hasOnlySubstanceUnits="false" id="M_sucr_e" metaid="M_sucr_e"
-      name="Sucrose C12H22O11">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_sucr_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/sucr" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:SUCROSE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15128" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17992" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26812" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45795" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9314" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00258" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00089" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00025" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.glycan/G00370" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM167" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00076" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C3H5O3" hasOnlySubstanceUnits="false" id="M_lac__L_c" metaid="M_lac__L_c"
-      name="L-Lactate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_lac__L_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/lac__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:L-LACTATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11065" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12411" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16651" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18783" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:422" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00190" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03328" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62492" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00186" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM179" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00159" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="CH4N2O" hasOnlySubstanceUnits="false" id="M_urea_e" metaid="M_urea_e" name="Urea CH4N2O">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_urea_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/urea" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:UREA" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:134711" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15292" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16199" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27218" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32285" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46379" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48376" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9888" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00294" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00086" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00023" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D01749" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D10496" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM117" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00073" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C2H4O2" hasOnlySubstanceUnits="false" id="M_gcald_c" metaid="M_gcald_c"
-      name="Glycolaldehyde">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_gcald_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/gcald" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLYCOLALDEHYDE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:131198" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14347" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17071" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24386" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5474" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02165" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03344" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00266" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM349" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00229" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-1" fbc:chemicalFormula="C16H29O2" hasOnlySubstanceUnits="false" id="M_hdcea_e" metaid="M_hdcea_e"
-      name="Hexadecenoate (n-C16:1)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_hdcea_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/hdcea" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM950" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C16H21N5O15P2" hasOnlySubstanceUnits="false" id="M_gdpddman_c" metaid="M_gdpddman_c"
-      name="GDP-4-dehydro-6-deoxy-D-mannose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_gdpddman_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/gdpddman" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GDP-4-DEHYDRO-6-DEOXY-D-MANNOSE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13329" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16955" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21153" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5214" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57964" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01222" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM516" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00900" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C6H8O8" hasOnlySubstanceUnits="false" id="M_galct__D_c" metaid="M_galct__D_c"
-      name="D-Galactarate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_galct__D_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/galct__D" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-GALACTARATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12929" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14285" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16537" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17444" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20944" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24135" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24136" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24137" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30852" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:33799" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35390" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4130" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48871" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5250" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00639" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03435" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00879" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01170107" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1080" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00652" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C3H6O3" hasOnlySubstanceUnits="false" id="M_dha_c" metaid="M_dha_c"
-      name="Dihydroxyacetone">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dha_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dha" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DIHYDROXYACETONE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14340" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16016" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24354" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:39809" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5453" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01882" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00184" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D07841" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM460" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00157" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-1" fbc:chemicalFormula="C10H16N3O6S" hasOnlySubstanceUnits="false" id="M_gthrd_e" metaid="M_gthrd_e"
-      name="Reduced glutathione">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_gthrd_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/gthrd" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLUTATHIONE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12402" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14327" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16856" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24334" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42873" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43049" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5437" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57925" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00125" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01463" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06960" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62697" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00051" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00014" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM57" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00042" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C3H5N2O4" hasOnlySubstanceUnits="false" id="M_urdglyc_c" metaid="M_urdglyc_c"
-      name="(-)-Ureidoglycolate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_urdglyc_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/urdglyc" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-1091" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10783" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11076" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:121" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15412" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18499" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18804" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27224" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49050" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57296" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9891" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01005" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00603" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C02766" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM490" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00465" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01786" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C31H50N7O17P3S" hasOnlySubstanceUnits="false" id="M_dcacoa_c" metaid="M_dcacoa_c"
-      name="Decanoyl-CoA (n-C10:0CoA)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dcacoa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dcacoa" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06404" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM162283" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-2" fbc:chemicalFormula="O3S" hasOnlySubstanceUnits="false" id="M_so3_e" metaid="M_so3_e" name="Sulfite">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_so3_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/so3" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:H2SO3" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:HSO3" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:SO3" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13367" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15139" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17137" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17359" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26837" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29214" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:33543" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45548" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48854" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5598" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9344" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00240" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01033" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03008" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB34829" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00094" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C11481" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM105630" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00081" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C8H15NO6" hasOnlySubstanceUnits="false" id="M_acgam_p" metaid="M_acgam_p"
-      name="N-Acetyl-D-glucosamine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_acgam_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/acgam" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:N-acetyl-D-glucosamine" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12455" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12563" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17411" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21517" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:506227" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58134" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7123" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00215" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00533" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB14288" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62641" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00140" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM143" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00122" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd27608" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C12H22O11" hasOnlySubstanceUnits="false" id="M_melib_p" metaid="M_melib_p"
-      name="Melibiose C12H22O11">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_melib_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/melib" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:MELIBIOSE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20943" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25182" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28053" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:60170" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61827" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6733" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00048" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05402" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.glycan/G00835" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.glycan/G01275" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1434" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03198" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C6H12O5" hasOnlySubstanceUnits="false" id="M_rmn_p" metaid="M_rmn_p" name="L-Rhamnose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_rmn_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/rmn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-15405" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:L-rhamnopyranose" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:L-rhamnose" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13160" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16055" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21378" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26546" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45427" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57622" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:62345" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:62346" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6292" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00849" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00507" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2967" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00396" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd27379" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C6H11O7" hasOnlySubstanceUnits="false" id="M_galctn__D_p" metaid="M_galctn__D_p"
-      name="D-Galactonate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_galctn__D_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/galctn__D" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-GALACTONATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12931" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16534" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24148" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24149" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4132" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00565" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00880" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1734" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00653" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="1" fbc:chemicalFormula="C12H25N2O7" hasOnlySubstanceUnits="false" id="M_frulys_e" metaid="M_frulys_e"
-      name="Fructoselysine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_frulys_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/frulys" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:FRUCTOSELYSINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24109" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61393" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:63523" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C16488" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1742" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15466" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-2" fbc:chemicalFormula="C9H12N3O8P" hasOnlySubstanceUnits="false" id="M_cmp_e" metaid="M_cmp_e"
-      name="CMP C9H12N3O8P">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cmp_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cmp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CMP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13274" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17361" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23520" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:3275" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41312" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41319" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41666" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41691" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:47362" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48799" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58120" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:60377" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00055" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.glycan/G10621" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM31" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00046" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="1" fbc:chemicalFormula="C8H13N2O2" hasOnlySubstanceUnits="false" id="M_pydam_e" metaid="M_pydam_e"
-      name="Pyridoxamine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pydam_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pydam" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PYRIDOXAMINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:131533" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14978" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16410" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26426" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45228" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57761" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8669" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01431" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62696" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00534" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM548" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00419" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="C10H12N5O8P" hasOnlySubstanceUnits="false" id="M_gmp_p" metaid="M_gmp_p"
-      name="GMP C10H12N5O8P">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_gmp_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/gmp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GMP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13341" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14381" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17345" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24449" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24450" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29058" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40119" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42615" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42647" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42831" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42887" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42892" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42979" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:47450" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5228" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58115" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00144" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM113" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00126" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C8H8O2" hasOnlySubstanceUnits="false" id="M_4hoxpacd_p" metaid="M_4hoxpacd_p"
-      name="4-Hydroxyphenylacetaldehyde">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_4hoxpacd_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/4hoxpacd" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:HYDRPHENYLAC-CPD" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10899" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12012" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15621" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1872" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20417" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03767" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C03765" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM479" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02361" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-2" fbc:chemicalFormula="C10H12N5O7P" hasOnlySubstanceUnits="false" id="M_3amp_e" metaid="M_3amp_e"
-      name="3  AMP C10H12N5O7P">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_3amp_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/3amp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-3706" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1333" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22241" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28931" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40872" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:60880" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03540" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06550" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01367" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1985" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00988" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C36H62O31" hasOnlySubstanceUnits="false" id="M_14glucan_e" metaid="M_14glucan_e"
-      name="1,4-alpha-D-glucan">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_14glucan_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/14glucan" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:1-4-alpha-D-Glucan" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2905" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd21754" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C4H9NO3" hasOnlySubstanceUnits="false" id="M_athr__L_c" metaid="M_athr__L_c"
-      name="L-Allo-threonine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_athr__L_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/athr__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:L-ALLO-THREONINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21221" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28718" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:38262" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40698" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58585" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6174" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB04041" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05519" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2125" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03282" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C27H49N2O9PRS" hasOnlySubstanceUnits="false" id="M_3opalmACP_c" metaid="M_3opalmACP_c"
-      name="3-Oxohexadecanoyl-[acyl-carrier protein]">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_3opalmACP_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/3opalmACP" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:3-oxo-palmitoyl-ACPs" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1639" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05762" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07060019" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM4345" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd11485" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C29H53N2O9PRS" hasOnlySubstanceUnits="false" id="M_3hcvac11eACP_c"
-      metaid="M_3hcvac11eACP_c" name="(R)-3-hydroxy-cis-vacc-11-enoyl-[acyl-carrier protein]">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_3hcvac11eACP_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/3hcvac11eACP" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM6557" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15370" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C6H11O8S" hasOnlySubstanceUnits="false" id="M_sq_p" metaid="M_sq_p"
-      name="Sulphoquinovose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_sq_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/sq" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C3H7NO4P" hasOnlySubstanceUnits="false" id="M_acampnt_c" metaid="M_acampnt_c"
-      name="2-N-acetamidomethylphosphonate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_acampnt_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/acampnt" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C21H32N7O16P3S" hasOnlySubstanceUnits="false" id="M_coa_c" metaid="M_coa_c"
-      name="Coenzyme A">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_coa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/coa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CO-A" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:COA-GROUP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13294" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13295" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13298" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15346" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23355" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:3771" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41597" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41631" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57287" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:741566" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01423" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00010" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM12" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00010" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd22528" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C4H8N2O3" hasOnlySubstanceUnits="false" id="M_asn__L_c" metaid="M_asn__L_c"
-      name="L-Asparagine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_asn__L_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/asn__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ASN" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13083" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17196" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21242" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22653" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32650" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32651" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32660" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32661" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40902" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58048" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6191" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00168" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00152" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C16438" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM147" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00132" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15142" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C9H11N2O12P2" hasOnlySubstanceUnits="false" id="M_udp_c" metaid="M_udp_c"
-      name="UDP C9H11N2O12P2">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_udp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/udp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:UDP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13445" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17659" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27230" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46402" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58223" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9802" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00015" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.glycan/G10619" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM17" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00014" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H4N4O" hasOnlySubstanceUnits="false" id="M_hxan_c" metaid="M_hxan_c"
-      name="Hypoxanthine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_hxan_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/hxan" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:HYPOXANTHINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14431" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17368" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24762" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43237" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5841" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00157" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00262" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM213" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00226" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C6H13NO2" hasOnlySubstanceUnits="false" id="M_leu__L_c" metaid="M_leu__L_c"
-      name="L-Leucine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_leu__L_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/leu__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:LEU" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10866" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13131" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15603" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21348" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25017" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32619" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32620" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32627" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32628" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43646" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43695" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43733" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43814" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57427" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6260" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00687" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62203" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00123" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C16439" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00030" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01100048" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM140" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00107" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15143" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C13H15N4O12P" hasOnlySubstanceUnits="false" id="M_25aics_c" metaid="M_25aics_c"
-      name="(S)-2-[5-Amino-1-(5-phospho-D-ribosyl)imidazole-4-carboxamido]succinate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_25aics_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/25aics" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:P-RIBOSYL-4-SUCCCARB-AMINOIMIDAZOLE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18971" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28208" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:576" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00797" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06274" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C04811" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM32478" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02921" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C12H22O11" hasOnlySubstanceUnits="false" id="M_melib_e" metaid="M_melib_e"
-      name="Melibiose C12H22O11">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_melib_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/melib" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:MELIBIOSE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20943" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25182" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28053" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:60170" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61827" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6733" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00048" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05402" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.glycan/G00835" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.glycan/G01275" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1434" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03198" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C16H23N5O15P2" hasOnlySubstanceUnits="false" id="M_gdpfuc_c" metaid="M_gdpfuc_c"
-      name="GDP-L-fucose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_gdpfuc_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/gdpfuc" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-13118" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GUANOSINE_DIPHOSPHATE_FUCOSE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13332" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13335" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17009" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21162" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5221" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57273" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57984" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01095" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00325" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.glycan/G10615" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM193" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00272" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd23744" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd27127" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C63H103NO12P2" hasOnlySubstanceUnits="false" id="M_unaga_c" metaid="M_unaga_c"
-      name="Undecaprenyl diphospho N-acetyl-glucosamine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_unaga_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/unaga" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ACETYL-D-GLUCOSAMINYLDIPHOSPHO-UNDECAPRE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:62958" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:62959" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01289" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1333" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00946" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C24H42O21" hasOnlySubstanceUnits="false" id="M_maltttr_e" metaid="M_maltttr_e"
-      name="Maltotetraose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_maltttr_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/maltttr" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-13205" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2595" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:MALTOTETRAOSE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25145" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28460" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44299" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61988" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:62974" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6671" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01296" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C02013" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C02052" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.glycan/G00459" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM5663" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01376" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01399" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-1" fbc:chemicalFormula="C6H9O7" hasOnlySubstanceUnits="false" id="M_glcur_e" metaid="M_glcur_e"
-      name="D-Glucuronate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_glcur_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/glcur" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-Glucopyranuronate" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12975" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15748" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21013" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24297" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24298" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4178" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:47952" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58720" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00191" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM241" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00164" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C28H46N8O18P3S" hasOnlySubstanceUnits="false" id="M_crncoa_c" metaid="M_crncoa_c"
-      name="L-Carnitinyl-CoA">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_crncoa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/crncoa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:L-CARNITINYL-COA" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41482" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:60932" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C20750" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07050150" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1451" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C7H15NO2" hasOnlySubstanceUnits="false" id="M_gbbtn_e" metaid="M_gbbtn_e"
-      name="Gamma-butyrobetaine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_gbbtn_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/gbbtn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GAMMA-BUTYROBETAINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12047" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16244" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1941" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20484" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01161" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06831" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01181" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM626" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00870" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C7H6NO2" hasOnlySubstanceUnits="false" id="M_4abz_c" metaid="M_4abz_c"
-      name="4-Aminobenzoate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_4abz_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/4abz" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:P-AMINO-BENZOATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:113372" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11959" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1783" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17836" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20314" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20315" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30753" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44778" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00568" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D02456" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM421" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00443" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C62H88CoN13O14P" hasOnlySubstanceUnits="false" id="M_cbl1_p" metaid="M_cbl1_p"
-      name="Cob(I)alamin">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cbl1_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cbl1" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:COB-I-ALAMIN" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14004" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15982" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23328" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:3784" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:60488" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03429" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06470" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00853" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM91519" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C30H27N3O15" hasOnlySubstanceUnits="false" id="M_enter_e" metaid="M_enter_e"
-      name="Enterochelin">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_enter_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/enter" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ENTEROBACTIN" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23923" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28855" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:38150" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4799" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:77805" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05821" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM883" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03453" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-11" fbc:chemicalFormula="C176H303N2O100P4" hasOnlySubstanceUnits="false" id="M_colipa_c" metaid="M_colipa_c"
-      name="Core oligosaccharide lipid A">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_colipa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/colipa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2271" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM47647" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15432" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C6H12O5" hasOnlySubstanceUnits="false" id="M_2dglc_c" metaid="M_2dglc_c"
-      name="2 Deoxy D glucose C6H12O5">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2dglc_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2dglc" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1078" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11565" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11569" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15866" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19553" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57546" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:84755" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:90760" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00586" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2925" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00455" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C25H45N2O9PRS" hasOnlySubstanceUnits="false" id="M_3omrsACP_c" metaid="M_3omrsACP_c"
-      name="3-Oxotetradecanoyl-[acyl-carrier protein]">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_3omrsACP_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/3omrsACP" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:3-oxo-myristoyl-ACPs" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1655" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05759" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07060017" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM26095" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd11491" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C42H77O13P2" hasOnlySubstanceUnits="false" id="M_pgp181_c" metaid="M_pgp181_c"
-      name="Phosphatidylglycerophosphate (dioctadec-11-enoyl, n-C18:1)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pgp181_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pgp181" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM5269" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C43H82N1O8P1" hasOnlySubstanceUnits="false" id="M_cpe180_c" metaid="M_cpe180_c"
-      name="Cyclopropane phosphatidylethanolamine (dioctadec-11,12-cyclo-anoyl, n-C18:0 cyclo)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cpe180_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cpe180" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2218" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM48209" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15434" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd26449" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H4N4O3" hasOnlySubstanceUnits="false" id="M_urate_e" metaid="M_urate_e"
-      name="Urate C5H4N4O3">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_urate_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/urate" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-15041" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-15332" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:URATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15290" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17775" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27216" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27226" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30848" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46455" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46811" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46814" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46817" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46818" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46820" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46821" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46822" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46823" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46824" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46825" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46826" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49051" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:62585" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:62589" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9885" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00289" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00366" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM441" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00300" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C18H34O5P" hasOnlySubstanceUnits="false" id="M_ocdceap_c" metaid="M_ocdceap_c"
-      name="Octadecanoyl-phosphate (n-C18:1)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ocdceap_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ocdceap" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM147529" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C7H5N4O3" hasOnlySubstanceUnits="false" id="M_cdg_c" metaid="M_cdg_c"
-      name="7-deaza-7-carboxyguanine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cdg_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cdg" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-13043" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61036" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61125" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C20248" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM5026" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd21481" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="HSR" hasOnlySubstanceUnits="false" id="M_iscs_c" metaid="M_iscs_c"
-      name="IscS sulfur acceptor protein">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_iscs_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/iscs" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM146401" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C7H8O5" hasOnlySubstanceUnits="false" id="M_3c4mop_c" metaid="M_3c4mop_c"
-      name="3-Carboxy-4-methyl-2-oxopentanoate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_3c4mop_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/3c4mop" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-7100" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11765" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1467" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17214" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19975" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB12149" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C04236" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1602" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02605" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C4H9NO2S" hasOnlySubstanceUnits="false" id="M_hcys__L_c" metaid="M_hcys__L_c"
-      name="L-Homocysteine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_hcys__L_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/hcys__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:HOMO-CYS" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13122" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14408" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17230" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17588" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21329" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43117" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5751" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58065" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58199" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6245" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:63072" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:66952" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00165" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00742" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00155" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05330" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM123" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00135" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd19034" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-2" fbc:chemicalFormula="C4H4O5" hasOnlySubstanceUnits="false" id="M_mal__L_e" metaid="M_mal__L_e"
-      name="L-Malate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_mal__L_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/mal__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:MAL" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11066" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13140" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15589" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18784" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18785" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30797" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:423" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00156" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00149" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM98" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00130" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C9H11NO2" hasOnlySubstanceUnits="false" id="M_phe__L_e" metaid="M_phe__L_e"
-      name="L-Phenylalanine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_phe__L_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/phe__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PHE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13151" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17295" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21370" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25984" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28044" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32486" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32487" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32504" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32505" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44851" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44885" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45079" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58095" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6282" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:76052" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8089" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00159" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00612" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00079" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C02057" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00021" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM97" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00066" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01400" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C14H22N2O10PRS" hasOnlySubstanceUnits="false" id="M_malACP_c" metaid="M_malACP_c"
-      name="Malonyl-[acyl-carrier protein]">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_malACP_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/malACP" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:MALONYL-ACP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14566" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17330" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6662" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01209" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM184" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd11492" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="2" fbc:chemicalFormula="C4H14N2" hasOnlySubstanceUnits="false" id="M_ptrc_e" metaid="M_ptrc_e" name="Putrescine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ptrc_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ptrc" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PUTRESCINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14972" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17148" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26405" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:326268" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45092" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8650" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01414" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB60243" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00134" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM118" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00118" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd12215" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C9H9O3" hasOnlySubstanceUnits="false" id="M_3hpppn_c" metaid="M_3hpppn_c"
-      name="3-(3-hydroxy-phenyl)propionate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_3hpppn_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/3hpppn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:3-HYDROXYPHENYL-PROPIONATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1427" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57277" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00375" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C11457" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1634" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd08304" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C36H62O31" hasOnlySubstanceUnits="false" id="M_malthx_e" metaid="M_malthx_e"
-      name="Maltohexaose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_malthx_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/malthx" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:MALTOHEXAOSE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25141" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27445" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61953" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6667" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB12253" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01936" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.glycan/G00755" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1317" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01329" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="1" fbc:chemicalFormula="C25H46FeN6O8" hasOnlySubstanceUnits="false" id="M_feoxam_p" metaid="M_feoxam_p"
-      name="Generic ferrioxamine-Fe-III">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_feoxam_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/feoxam" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-3764" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2124" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4356" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:84700" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB14884" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06940" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D03670" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA08020169" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA08020175" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM94790" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd04273" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd23947" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C5H8NO4" hasOnlySubstanceUnits="false" id="M_glu__L_p" metaid="M_glu__L_p"
-      name="L-Glutamate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_glu__L_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/glu__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLT" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:Glutamates" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13107" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14321" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16015" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18237" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21301" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21304" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24314" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29985" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29987" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29988" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42825" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5431" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6224" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:76051" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00148" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB60475" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00025" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00302" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00007" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D04341" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM89557" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00023" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd19002" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd27177" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C6H4NO2" hasOnlySubstanceUnits="false" id="M_nac_p" metaid="M_nac_p" name="Nicotinate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_nac_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/nac" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:NIACINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14650" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15940" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22851" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25530" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25538" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32544" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44319" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7559" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01488" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00253" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00049" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM274" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00218" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C14H18N2O16P2" hasOnlySubstanceUnits="false" id="M_udpLa4o_c" metaid="M_udpLa4o_c"
-      name="UDP-4-keto-pyranose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_udpLa4o_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/udpLa4o" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:5-BETA-L-THREO-PENTAPYRANOSYL-4-ULOSE-" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:47028" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58710" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C16155" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1505" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd14876" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15578" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-3" fbc:chemicalFormula="C79H126N3O22P2" hasOnlySubstanceUnits="false" id="M_unagamuf_p" metaid="M_unagamuf_p"
-      name="Undecaprenyl-diphospho N-acetylglucosamine-N-acetylmannosaminuronate-N-acetamido-4,6-dideoxy-D-galactose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_unagamuf_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/unagamuf" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:C55-PP-GLCNAC-MANNACA-FUC4NAC" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM6160" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15582" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C83H135N1O27P2" hasOnlySubstanceUnits="false" id="M_gfgaragund_c"
-      metaid="M_gfgaragund_c" name="Galactofuranosyl-glucosyl-O-acetyl-rhamanosyl-N-acetylglucosamyl-undecaprenyl diphosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_gfgaragund_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/gfgaragund" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2219" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM54130" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15473" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C3H5O4" hasOnlySubstanceUnits="false" id="M_glyc__R_p" metaid="M_glyc__R_p"
-      name="(R)-Glycerate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_glyc__R_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/glyc__R" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLYCERATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10999" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12985" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16659" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21027" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21030" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24348" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24349" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32398" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:33508" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:33846" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:33871" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4187" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41990" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00139" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00258" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM189" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00223" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C2H5O3S" hasOnlySubstanceUnits="false" id="M_ethso3_p" metaid="M_ethso3_p"
-      name="Ethanesulfonate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ethso3_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ethso3" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-10434" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42465" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61909" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM7343" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd11579" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C8H14O2S2" hasOnlySubstanceUnits="false" id="M_lipoate_c" metaid="M_lipoate_c"
-      name="Lipoate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_lipoate_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/lipoate" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:LIPOIC-ACID" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14519" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:146958" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16494" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25056" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25058" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30313" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30314" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30315" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43790" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43796" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6492" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:83088" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01451" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB14312" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00725" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C16241" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00086" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01130001" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1484" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00541" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd14958" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C15H25N2O8PRS" hasOnlySubstanceUnits="false" id="M_but2eACP_c" metaid="M_but2eACP_c"
-      name="But-2-enoyl-[acyl-carrier protein]">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_but2eACP_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/but2eACP" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C04246" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM3229" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd11465" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C39H76O5" hasOnlySubstanceUnits="false" id="M_12dgr180_c" metaid="M_12dgr180_c"
-      name="1,2-Diacyl-sn-glycerol (dioctadecanoyl, n-C18:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_12dgr180_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/12dgr180" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM4217" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C10H11N4O12P2" hasOnlySubstanceUnits="false" id="M_xdp_c" metaid="M_xdp_c" name="XDP">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_xdp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/xdp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:XDP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10048" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:59884" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01337" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM4133" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00972" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="XH2" hasOnlySubstanceUnits="false" id="M_dsbgrd_p" metaid="M_dsbgrd_p"
-      name="Periplasmic disulfide isomerase/thiol-disulphide oxidase (reduced)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dsbgrd_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dsbgrd" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM12615" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15453" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C3H6O" hasOnlySubstanceUnits="false" id="M_ppal_e" metaid="M_ppal_e" name="Propanal">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ppal_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ppal" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-665" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14898" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17153" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26281" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41359" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45052" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8468" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03366" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00479" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM821" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00371" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C18H36O5P" hasOnlySubstanceUnits="false" id="M_ocdcap_c" metaid="M_ocdcap_c"
-      name="Octadecanoyl-phosphate (n-C18:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ocdcap_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ocdcap" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM147528" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-9" fbc:chemicalFormula="C181H314N3O103P4" hasOnlySubstanceUnits="false" id="M_acolipa_e" metaid="M_acolipa_e"
-      name="4-Amino-4-deoxy-L-arabinose modified core oligosaccharide lipid A">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_acolipa_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/acolipa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2293" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM37330" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15392" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="2" fbc:chemicalFormula="S4Fe4" hasOnlySubstanceUnits="false" id="M_4fe4s_c" metaid="M_4fe4s_c"
-      name="[4Fe-4S] iron-sulfur cluster">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_4fe4s_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/4fe4s" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-7" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:33725" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM37766" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C31H48O5" hasOnlySubstanceUnits="false" id="M_fusa_e" metaid="M_fusa_e"
-      name="Fusidic acid">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_fusa_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/fusa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-1606" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24133" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29013" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42742" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5201" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:71321" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB15570" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06694" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D04281" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMPR0106040001" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM125818" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd04095" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C6H6N4" hasOnlySubstanceUnits="false" id="M_dhptdn_c" metaid="M_dhptdn_c"
-      name="6,7-Dihydropteridine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dhptdn_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dhptdn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:67-DIHYDROPTERIDINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12184" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30156" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4580" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01441" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05649" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2952" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03360" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C7H5O3" hasOnlySubstanceUnits="false" id="M_4hbz_p" metaid="M_4hbz_p"
-      name="4-Hydroxybenzoate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_4hbz_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/4hbz" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:4-hydroxybenzoate" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12003" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17879" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1858" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20397" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20398" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30763" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44949" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00500" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00156" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM164" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00136" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C24H34N7O17P3S" hasOnlySubstanceUnits="false" id="M_prpncoa_c" metaid="M_prpncoa_c"
-      name="Propenoyl-CoA">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_prpncoa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/prpncoa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ACRYLYL-COA" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13722" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15513" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26301" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57367" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8488" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02307" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06507" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00894" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07050282" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07050283" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM650" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00663" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C6H5O7" hasOnlySubstanceUnits="false" id="M_icit_c" metaid="M_icit_c" name="Isocitrate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_icit_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/icit" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14465" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16087" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24884" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24886" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30887" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:36453" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:36454" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5998" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00193" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00311" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM89661" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00260" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C3H5O3" hasOnlySubstanceUnits="false" id="M_lac__D_c" metaid="M_lac__D_c"
-      name="D-Lactate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_lac__D_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/lac__D" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-LACTATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11001" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16004" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18684" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:341" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42105" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42111" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43701" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00171" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01311" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00256" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM285" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00221" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C5H9O7P" hasOnlySubstanceUnits="false" id="M_2dr5p_c" metaid="M_2dr5p_c"
-      name="2-Deoxy-D-ribose 5-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2dr5p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2dr5p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DEOXY-RIBOSE-5P" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1082" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11566" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16132" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19559" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42055" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:55513" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57651" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:62877" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01031" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00673" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2179" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00510" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd26846" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C10H13N2O11P2" hasOnlySubstanceUnits="false" id="M_dtdp_c" metaid="M_dtdp_c"
-      name="DTDP C10H13N2O11P2">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dtdp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dtdp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TDP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10500" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14077" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18075" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26998" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46061" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58369" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01274" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00363" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM152" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00297" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C4H6N2O2" hasOnlySubstanceUnits="false" id="M_56dura_c" metaid="M_56dura_c"
-      name="5,6-dihydrouracil">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_56dura_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/56dura" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DI-H-URACIL" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12078" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15901" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19360" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1999" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20511" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28622" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42107" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:921" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00076" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00429" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM506" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00337" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H4N4O3" hasOnlySubstanceUnits="false" id="M_urate_c" metaid="M_urate_c"
-      name="Urate C5H4N4O3">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_urate_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/urate" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-15041" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-15332" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:URATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15290" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17775" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27216" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27226" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30848" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46455" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46811" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46814" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46817" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46818" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46820" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46821" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46822" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46823" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46824" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46825" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46826" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49051" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:62585" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:62589" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9885" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00289" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00366" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM441" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00300" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="H2" hasOnlySubstanceUnits="false" id="M_h2_c" metaid="M_h2_c" name="Hydrogen">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_h2_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/h2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:HYDROGEN-MOLECULE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13350" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18276" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25363" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29294" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29298" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29299" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5785" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01362" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00282" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM195" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd11640" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C9H11N2O9P" hasOnlySubstanceUnits="false" id="M_psd5p_c" metaid="M_psd5p_c"
-      name="Pseudouridine 5  phosphate C9H11N2O9P">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_psd5p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/psd5p" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM148492" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C30H52O26" hasOnlySubstanceUnits="false" id="M_maltpt_e" metaid="M_maltpt_e"
-      name="Maltopentaose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_maltpt_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/maltpt" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:MALTOPENTAOSE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61952" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:62006" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB12254" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.glycan/G00343" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1538" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15495" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-6" fbc:chemicalFormula="C96H170N2O38P2" hasOnlySubstanceUnits="false" id="M_kdo2lipid4L_c"
-      metaid="M_kdo2lipid4L_c" name="KDO(2)-lipid IV(A) with laurate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_kdo2lipid4L_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/kdo2lipid4L" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25015" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27422" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61524" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61554" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6393" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06251" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMSL02000002" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1870" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03736" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd29678" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="NO2" hasOnlySubstanceUnits="false" id="M_no2_c" metaid="M_no2_c" name="Nitrite">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_no2_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/no2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:NITRITE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14658" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16301" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25567" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44396" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7585" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02786" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00088" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM107" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00075" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C37H60N7O17P3S" hasOnlySubstanceUnits="false" id="M_hdd2coa_c" metaid="M_hdd2coa_c"
-      name="Trans-Hexadec-2-enoyl-CoA">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_hdd2coa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/hdd2coa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2117" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10728" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27047" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28935" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:52381" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61526" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03945" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06533" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05272" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07050020" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07050144" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM581" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03126" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="NO" hasOnlySubstanceUnits="false" id="M_no_e" metaid="M_no_e" name="Nitric oxide">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_no_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/no" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:NITRIC-OXIDE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14657" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16480" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25546" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44452" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7583" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03378" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00533" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00074" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM228" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="CH4O1" hasOnlySubstanceUnits="false" id="M_meoh_e" metaid="M_meoh_e" name="Methanol">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_meoh_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/meoh" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ALCOHOL-GROUP" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:METOH" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14588" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17790" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25227" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44080" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44553" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:52090" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6816" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01875" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00132" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D02309" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM157" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00116" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C6H9O6" hasOnlySubstanceUnits="false" id="M_2ddglcn_p" metaid="M_2ddglcn_p"
-      name="2-Dehydro-3-deoxy-D-gluconate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2ddglcn_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2ddglcn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:2-DEHYDRO-3-DEOXY-D-GALACTONATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:2-DEHYDRO-3-DEOXY-D-GLUCONATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1056" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1059" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11547" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11550" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17028" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17032" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19527" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19530" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57989" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57990" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01353" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00204" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01216" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01050475" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01050486" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1627" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00176" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00894" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="C3H7O6P" hasOnlySubstanceUnits="false" id="M_glyc3p_p" metaid="M_glyc3p_p"
-      name="Glycerol 3-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_glyc3p_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/glyc3p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLYCEROL-3P" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10648" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12843" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12848" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15978" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26705" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42793" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57597" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00093" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM66" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00080" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-4" fbc:chemicalFormula="C10H12N5O14P3" hasOnlySubstanceUnits="false" id="M_gtp_p" metaid="M_gtp_p"
-      name="GTP C10H12N5O14P3">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_gtp_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/gtp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GTP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13342" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15996" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24451" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:37565" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42934" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5234" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57600" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00044" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM51" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00038" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H11NO3S" hasOnlySubstanceUnits="false" id="M_metsox_S__L_c" metaid="M_metsox_S__L_c"
-      name="L-Methionine Sulfoxide">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_metsox_S__L_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/metsox_S__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-8989" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-8990" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:L-Methionine-sulfoxides" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13142" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17016" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21361" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49031" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49032" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58772" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58773" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6272" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C02989" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C15998" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C15999" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2246" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01914" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd14720" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd14721" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15497" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15498" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd29319" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="C9H11N2O9P" hasOnlySubstanceUnits="false" id="M_3ump_p" metaid="M_3ump_p"
-      name="3  UMP C9H11N2O9P">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_3ump_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/3ump" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-3724" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1361" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27229" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28895" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46259" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:556513" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:60784" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB60282" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01368" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2184" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00989" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C34H66O10P1" hasOnlySubstanceUnits="false" id="M_pg140_c" metaid="M_pg140_c"
-      name="Phosphatidylglycerol (ditetradecanoyl, n-C14:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pg140_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pg140" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-19677" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:60723" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMGP04010005" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM51019" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="C31H59O8P1" hasOnlySubstanceUnits="false" id="M_pa140_p" metaid="M_pa140_p"
-      name="1,2-ditetradecanoyl-sn-glycerol 3-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pa140_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pa140" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-1425" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:62085" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:83321" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:83550" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:84266" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMGP10010026" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM51017" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15522" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd26150" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C60H116O11P" hasOnlySubstanceUnits="false" id="M_apg180_c" metaid="M_apg180_c"
-      name="Acyl phosphatidylglycerol (n-C18:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_apg180_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/apg180" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2195" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM40229" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd26442" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="1" fbc:chemicalFormula="C3H10NO" hasOnlySubstanceUnits="false" id="M_appl_c" metaid="M_appl_c"
-      name="1-Aminopropan-2-ol">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_appl_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/appl" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:1-AMINO-PROPAN-2-OL" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10963" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15675" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18642" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19030" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:303" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42677" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:610" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB12136" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C03194" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05771" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1029" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02039" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd19039" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C32H38N7O19P3S" hasOnlySubstanceUnits="false" id="M_14dhncoa_c" metaid="M_14dhncoa_c"
-      name="1,4-dihydroxy-2-napthoyl-CoA">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_14dhncoa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/14dhncoa" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM147663" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C2H4O" hasOnlySubstanceUnits="false" id="M_acald_c" metaid="M_acald_c"
-      name="Acetaldehyde">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_acald_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/acald" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ACETALD" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13703" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15343" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22158" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2383" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40533" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00990" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00084" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM75" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00071" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C9H15N4O9P" hasOnlySubstanceUnits="false" id="M_5aprbu_c" metaid="M_5aprbu_c"
-      name="5-Amino-6-(5'-phosphoribitylamino)uracil">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_5aprbu_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/5aprbu" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-1086" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12107" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18247" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2031" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58421" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03841" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C04454" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1178" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02720" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H9NO3" hasOnlySubstanceUnits="false" id="M_5aop_c" metaid="M_5aop_c"
-      name="5-Amino-4-oxopentanoate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_5aop_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/5aop" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:5-AMINO-LEVULINATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12109" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:132970" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17549" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2034" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20547" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:356416" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01149" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00430" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D07567" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01100055" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM405" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00338" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C29H44N7O17P3S" hasOnlySubstanceUnits="false" id="M_oc2coa_c" metaid="M_oc2coa_c"
-      name="Trans-Oct-2-enoyl-CoA">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_oc2coa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/oc2coa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2108" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10732" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27078" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27537" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:62242" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03949" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05276" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07050024" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07050394" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM784" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03130" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C14H18N2O4" hasOnlySubstanceUnits="false" id="M_rdmbzi_c" metaid="M_rdmbzi_c"
-      name="N1-(alpha-D-ribosyl)-5,6-dimethylbenzimidazole">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_rdmbzi_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/rdmbzi" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ALPHA-RIBAZOLE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10329" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB11112" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05775" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1539" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03423" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C28H44N8O17P3S" hasOnlySubstanceUnits="false" id="M_ctbtcoa_c" metaid="M_ctbtcoa_c"
-      name="Crotonobetainyl-CoA">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ctbtcoa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ctbtcoa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CROTONOBETAINYL-COA" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:60933" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61123" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C20748" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07050143" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07050306" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2363" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15441" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C25H47N2O9PRS" hasOnlySubstanceUnits="false" id="M_3hmrsACP_c" metaid="M_3hmrsACP_c"
-      name="(R)-3-Hydroxytetradecanoyl-[acyl-carrier protein]">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_3hmrsACP_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/3hmrsACP" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:R-3-hydroxymyristoyl-ACPs" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C04688" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM7733" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd11484" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C5H11NO7P" hasOnlySubstanceUnits="false" id="M_pram_c" metaid="M_pram_c"
-      name="5-Phospho-beta-D-ribosylamine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pram_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pram" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:5-P-BETA-D-RIBOSYL-AMINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12161" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20626" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2123" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:37737" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42834" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58681" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01128" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02347" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62576" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C03090" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM90003" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01982" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C3H3N2O4" hasOnlySubstanceUnits="false" id="M_oxur_c" metaid="M_oxur_c"
-      name="Oxalureate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_oxur_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/oxur" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-389" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14706" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16582" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25736" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25737" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57824" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7816" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00802" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1088" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00596" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="2" fbc:chemicalFormula="C5H16N4" hasOnlySubstanceUnits="false" id="M_agm_e" metaid="M_agm_e" name="Agmatine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_agm_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/agm" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:AGMATHINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13747" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17431" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18576" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2514" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40556" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58145" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01432" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB60259" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00179" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM328" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00152" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="3" fbc:chemicalFormula="C30H27FeN3O15" hasOnlySubstanceUnits="false" id="M_feenter_c" metaid="M_feenter_c"
-      name="Fe-enterobactin">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_feenter_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/feenter" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21133" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28199" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:38151" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4993" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:70745" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06230" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM7354" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="1" fbc:chemicalFormula="Na" hasOnlySubstanceUnits="false" id="M_na1_c" metaid="M_na1_c" name="Sodium">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_na1_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/na1" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2422" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:NACL" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:NaF" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26717" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29101" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49766" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9175" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00588" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01330" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C14042" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D04874" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM27" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00971" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="1" fbc:chemicalFormula="C6H15N2O2" hasOnlySubstanceUnits="false" id="M_lys__L_p" metaid="M_lys__L_p"
-      name="L-Lysine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_lys__L_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/lys__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:LYS" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13135" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:133538" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18019" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21351" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25094" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32550" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32551" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32552" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32563" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32564" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32565" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43950" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6264" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62809" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00047" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C16440" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D02304" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM78" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00039" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd19182" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="NO3" hasOnlySubstanceUnits="false" id="M_no3_c" metaid="M_no3_c" name="Nitrate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_no3_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/no3" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-15028" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:NITRATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14654" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17632" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25545" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44487" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48107" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:71263" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7580" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01853" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02878" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00244" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D02313" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM207" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00209" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-1" fbc:chemicalFormula="C35H52N6O13Fe" hasOnlySubstanceUnits="false" id="M_cpgn_e" metaid="M_cpgn_e"
-      name="Coprogen">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cpgn_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cpgn" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:83101" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM114191" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15437" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C35H52N6O13Fe" hasOnlySubstanceUnits="false" id="M_cpgn_p" metaid="M_cpgn_p"
-      name="Coprogen">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cpgn_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cpgn" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:83101" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM114191" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15437" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="1" fbc:chemicalFormula="C8H12NO" hasOnlySubstanceUnits="false" id="M_tym_p" metaid="M_tym_p" name="Tyramine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_tym_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/tym" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TYRAMINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15276" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15760" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27174" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:327995" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9799" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00306" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62629" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00483" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM603" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00374" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="1" fbc:chemicalFormula="C8H12N" hasOnlySubstanceUnits="false" id="M_peamn_e" metaid="M_peamn_e"
-      name="Phenethylamine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_peamn_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/peamn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PHENYLETHYLAMINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14782" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18397" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:225237" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25965" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45001" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:50048" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8063" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB12275" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB60276" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05332" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM660" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03161" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C9H11N3O7P" hasOnlySubstanceUnits="false" id="M_23ccmp_p" metaid="M_23ccmp_p"
-      name="2',3'-Cyclic CMP">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_23ccmp_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/23ccmp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-3713" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19213" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27652" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:60877" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:824" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C02354" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM3148" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01571" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="1" fbc:chemicalFormula="Cu" hasOnlySubstanceUnits="false" id="M_cu_p" metaid="M_cu_p" name="Cu+">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cu_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cu" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23379" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49551" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49552" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM3568" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd30760" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-2" fbc:chemicalFormula="C17H25N3O17P2" hasOnlySubstanceUnits="false" id="M_udpacgal_e" metaid="M_udpacgal_e"
-      name="UDP-N-acetyl-D-galactosamine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_udpacgal_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/udpacgal" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:UDP-N-ACETYL-GALACTOSAMINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13455" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13470" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16650" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22112" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57847" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9820" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00203" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.glycan/G10611" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM162233" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00175" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C3H6O2" hasOnlySubstanceUnits="false" id="M_acetol_c" metaid="M_acetol_c"
-      name="Acetol cytosol">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_acetol_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/acetol" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ACETOL" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24666" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27957" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5796" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06961" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05235" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1744" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03105" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-6" fbc:chemicalFormula="C111H167N21O58" hasOnlySubstanceUnits="false" id="M_murein4px4px4p_p"
-      metaid="M_murein4px4px4p_p"
-      name="Three disacharide linked murein units (tetrapeptide crosslinked tetrapeptide (A2pm-&gt;D-ala) &amp; tetrapeptide corsslinked tetrapeptide (A2pm-&gt;D-ala)) (middle of chain)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_murein4px4px4p_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/murein4px4px4p" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM6451" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15508" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C15H27N2O9PRS" hasOnlySubstanceUnits="false" id="M_3haACP_c" metaid="M_3haACP_c"
-      name="(3R)-3-Hydroxyacyl-[acyl-carrier protein]">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_3haACP_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/3haACP" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:OH-ACYL-ACP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:84648" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01271" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM5861" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd11836" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C25H43N2O9PRS" hasOnlySubstanceUnits="false" id="M_3ocmrs7eACP_c"
-      metaid="M_3ocmrs7eACP_c" name="3-oxo-cis-myristol-7-eoyl-[acyl-carrier protein]">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_3ocmrs7eACP_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/3ocmrs7eACP" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM6838" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15374" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C3H5NO3" hasOnlySubstanceUnits="false" id="M_poaac_c" metaid="M_poaac_c"
-      name="Peroxyaminoacrylate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_poaac_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/poaac" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2340" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:59892" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C20249" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM3415" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd21482" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C6H12O4S" hasOnlySubstanceUnits="false" id="M_5mtr_e" metaid="M_5mtr_e"
-      name="5-Methylthio-D-ribose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_5mtr_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/5mtr" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-560" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12148" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16895" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2101" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22007" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57941" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:78440" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C03089" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1592" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01981" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C10H10N5O8PS2Mo" hasOnlySubstanceUnits="false" id="M_moco_c" metaid="M_moco_c"
-      name="Molybdenum cofactor">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_moco_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/moco" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:60525" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:79026" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM62305" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C6H8O9P" hasOnlySubstanceUnits="false" id="M_2ddg6p_c" metaid="M_2ddg6p_c"
-      name="2-Dehydro-3-deoxy-D-gluconate 6-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2ddg6p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2ddg6p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:2-KETO-3-DEOXY-6-P-GLUCONATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1051" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11543" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11551" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12227" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15925" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19522" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57569" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01376" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C04442" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM649" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02711" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H10O5" hasOnlySubstanceUnits="false" id="M_arab__L_c" metaid="M_arab__L_c"
-      name="L-Arabinose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_arab__L_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/arab__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-15699" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:L-ARABINOSE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6182" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C11476" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM91126" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd19109" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd27351" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H5N5" hasOnlySubstanceUnits="false" id="M_ade_c" metaid="M_ade_c" name="Adenine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ade_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ade" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ADENINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ADENINE-RING" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13733" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16708" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22236" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2470" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40579" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00034" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00147" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00034" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM168" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00128" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd22238" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C7H9NO8P" hasOnlySubstanceUnits="false" id="M_acg5p_c" metaid="M_acg5p_c"
-      name="N-Acetyl-L-glutamyl 5-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_acg5p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/acg5p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:N-ACETYL-GLUTAMYL-P" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12441" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12576" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16878" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21550" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57936" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7151" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06456" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C04133" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1384" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02552" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C5H8NO7P" hasOnlySubstanceUnits="false" id="M_glu5p_c" metaid="M_glu5p_c"
-      name="L-Glutamate 5-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_glu5p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/glu5p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:L-GLUTAMATE-5-P" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13108" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13113" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17798" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21312" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58274" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6230" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C03287" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1280" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02097" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C7H5NO4" hasOnlySubstanceUnits="false" id="M_23dhdp_c" metaid="M_23dhdp_c"
-      name="2,3-Dihydrodipicolinate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_23dhdp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/23dhdp" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11421" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48052" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM163139" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C10H12N5O13P3" hasOnlySubstanceUnits="false" id="M_dgtp_c" metaid="M_dgtp_c"
-      name="DGTP C10H12N5O13P3">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dgtp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dgtp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DGTP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10497" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14076" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16497" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19247" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57794" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61429" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01440" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00286" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM344" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00241" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C6H9N3O" hasOnlySubstanceUnits="false" id="M_4ahmmp_c" metaid="M_4ahmmp_c"
-      name="4-Amino-5-hydroxymethyl-2-methylpyrimidine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_4ahmmp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/4ahmmp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:HMP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11957" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16892" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1781" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20312" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43206" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01279" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM874" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00939" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C21H33N7O13P2S" hasOnlySubstanceUnits="false" id="M_dpcoa_c" metaid="M_dpcoa_c"
-      name="Dephospho-CoA">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dpcoa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dpcoa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DEPHOSPHO-COA" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11793" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14124" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15468" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23642" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41614" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4436" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57328" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01373" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00882" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07050315" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM481" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00655" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C7H7O4" hasOnlySubstanceUnits="false" id="M_23ddhb_c" metaid="M_23ddhb_c"
-      name="2,3-Dihydro-2,3-dihydroxybenzoate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_23ddhb_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/23ddhb" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DIHYDRO-DIOH-BENZOATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11420" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11423" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15941" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19311" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48968" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57576" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58764" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:877" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C04171" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM114261" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02566" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd29666" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C12H22O11" hasOnlySubstanceUnits="false" id="M_melib_c" metaid="M_melib_c"
-      name="Melibiose C12H22O11">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_melib_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/melib" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:MELIBIOSE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20943" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25182" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28053" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:60170" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61827" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6733" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00048" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05402" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.glycan/G00835" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.glycan/G01275" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1434" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03198" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-2" fbc:chemicalFormula="C6H8O8" hasOnlySubstanceUnits="false" id="M_galct__D_e" metaid="M_galct__D_e"
-      name="D-Galactarate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_galct__D_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/galct__D" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-GALACTARATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12929" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14285" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16537" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17444" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20944" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24135" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24136" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24137" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30852" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:33799" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35390" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4130" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48871" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5250" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00639" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03435" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00879" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01170107" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1080" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00652" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C25H47N2O8PRS" hasOnlySubstanceUnits="false" id="M_myrsACP_c" metaid="M_myrsACP_c"
-      name="Myristoyl-ACP (n-C14:0ACP)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_myrsACP_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/myrsACP" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM89779" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C10H17N2O3" hasOnlySubstanceUnits="false" id="M_dtbt_c" metaid="M_dtbt_c"
-      name="Dethiobiotin">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dtbt_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dtbt" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DETHIOBIOTIN" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14132" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16691" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23649" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:36990" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42279" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42280" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4457" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57861" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03581" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01909" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1020" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01311" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H10NO2S" hasOnlySubstanceUnits="false" id="M_met__D_p" metaid="M_met__D_p"
-      name="D-Methionine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_met__D_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/met__D" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-218" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13005" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16867" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21065" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32637" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32638" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4215" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44071" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57932" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00855" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1275" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00637" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C4H4O5" hasOnlySubstanceUnits="false" id="M_mal__D_c" metaid="M_mal__D_c"
-      name="D-Malate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_mal__D_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/mal__D" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-660" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11002" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15588" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18685" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18686" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30796" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:342" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42060" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44073" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB31518" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00497" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1608" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00386" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C11H16NO7" hasOnlySubstanceUnits="false" id="M_anhm_c" metaid="M_anhm_c"
-      name="1,6-anhydrous-N-Acetylmuramate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_anhm_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/anhm" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM90585" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15399" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="3" fbc:chemicalFormula="Fe" hasOnlySubstanceUnits="false" id="M_fe3_p" metaid="M_fe3_p" name="Iron (Fe3+)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_fe3_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/fe3" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13320" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21130" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24877" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29034" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:34755" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49595" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB12943" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C14819" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM196" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd10516" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-2" fbc:chemicalFormula="C9H10NO6P" hasOnlySubstanceUnits="false" id="M_tyrp_e" metaid="M_tyrp_e"
-      name="Phosphotyrosine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_tyrp_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/tyrp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-3728" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21991" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:37788" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45080" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45158" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45187" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45209" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:62338" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8171" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06501" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM3323" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03912" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="X" hasOnlySubstanceUnits="false" id="M_grxox_c" metaid="M_grxox_c"
-      name="Glutaredoxin (oxidized)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_grxox_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/grxox" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM90831" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15480" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C17H31O7P1" hasOnlySubstanceUnits="false" id="M_1tdec7eg3p_c" metaid="M_1tdec7eg3p_c"
-      name="1-tetradec-7-enoyl-sn-glycerol 3-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_1tdec7eg3p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/1tdec7eg3p" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM91053" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15330" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C42H81O13P2" hasOnlySubstanceUnits="false" id="M_pgp180_c" metaid="M_pgp180_c"
-      name="Phosphatidylglycerophosphate (dioctadecanoyl, n-C18:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pgp180_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pgp180" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-12820" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM75104" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15547" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd23598" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C15H30O7P1" hasOnlySubstanceUnits="false" id="M_2ddecg3p_p" metaid="M_2ddecg3p_p"
-      name="2-dodecanoyl-sn-glycerol 3-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2ddecg3p_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2ddecg3p" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM5461" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15350" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C19H36O7P1" hasOnlySubstanceUnits="false" id="M_2hdec9eg3p_p" metaid="M_2hdec9eg3p_p"
-      name="2-hexadec-9-enoyl-sn-glycerol 3-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2hdec9eg3p_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2hdec9eg3p" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM5464" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15354" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="O4Se" hasOnlySubstanceUnits="false" id="M_sel_c" metaid="M_sel_c" name="Selenate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_sel_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/sel" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:SELENATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15075" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18170" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26624" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:33490" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9088" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62761" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05697" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2282" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03396" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="S4Fe3" hasOnlySubstanceUnits="false" id="M_3fe4s_c" metaid="M_3fe4s_c"
-      name="[3Fe-4S] damaged iron-sulfur cluster">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_3fe4s_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/3fe4s" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM147396" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C18H25N5O8PS2" hasOnlySubstanceUnits="false" id="M_lipoamp_c" metaid="M_lipoamp_c"
-      name="Lipoyl-AMP">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_lipoamp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/lipoamp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:LIPOYL-AMP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:55451" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58923" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:83091" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:83864" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB59635" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C16238" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2392" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd14955" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C6H12O5" hasOnlySubstanceUnits="false" id="M_2dglc_e" metaid="M_2dglc_e"
-      name="2 Deoxy D glucose C6H12O5">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2dglc_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2dglc" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1078" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11565" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11569" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15866" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19553" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57546" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:84755" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:90760" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00586" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2925" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00455" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C21H27N7O14P2" hasOnlySubstanceUnits="false" id="M_nadh_c" metaid="M_nadh_c"
-      name="Nicotinamide adenine dinucleotide - reduced">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_nadh_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/nadh" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:NADH" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13395" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13396" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16908" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21902" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44216" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57945" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7423" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01487" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00004" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM10" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00004" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C10H12N5O7P" hasOnlySubstanceUnits="false" id="M_amp_c" metaid="M_amp_c"
-      name="AMP C10H12N5O7P">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_amp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/amp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:AMP" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:AMP-GROUP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12056" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13234" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13235" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13736" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13740" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16027" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22242" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22245" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2356" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40510" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40721" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40726" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40786" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40826" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:456215" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:47222" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00020" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D02769" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM14" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00018" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd22272" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C3H2O7P" hasOnlySubstanceUnits="false" id="M_3php_c" metaid="M_3php_c"
-      name="3-Phosphohydroxypyruvate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_3php_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/3php" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:3-P-HYDROXYPYRUVATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11883" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11884" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1661" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18110" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20191" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20192" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30933" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C03232" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM541" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02069" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C19H19N7O6" hasOnlySubstanceUnits="false" id="M_dhf_c" metaid="M_dhf_c"
-      name="7,8-Dihydrofolate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dhf_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dhf" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DIHYDROFOLATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12245" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14150" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15633" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20768" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42000" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4564" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57451" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01056" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00415" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM281" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00330" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="CH1O2" hasOnlySubstanceUnits="false" id="M_for_c" metaid="M_for_c" name="Formate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_for_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/for" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CARBOXYL-GROUP" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-9845" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD1G-1532" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD1G-1533" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD1G-1534" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD1G-1535" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:FORMATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14276" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15740" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24081" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24082" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30751" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42460" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5145" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00142" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00058" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM39" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00047" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd22511" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-2" fbc:chemicalFormula="HO4P" hasOnlySubstanceUnits="false" id="M_pi_e" metaid="M_pi_e" name="Phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pi_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pi" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-16459" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-9010" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PHOSPHATE-GROUP" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:Pi" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14791" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18367" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26078" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29137" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29139" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35780" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:39739" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:39745" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43470" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43474" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45024" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7793" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00973" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01429" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02105" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02142" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB05947" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00009" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C13558" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D05467" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM9" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00009" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd27787" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C12H16N4O4PS" hasOnlySubstanceUnits="false" id="M_thmmp_c" metaid="M_thmmp_c"
-      name="Thiamin monophosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_thmmp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/thmmp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:THIAMINE-P" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15230" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15231" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26945" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:37574" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:37575" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46189" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9533" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02666" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01081" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM662" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00793" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C25H36N7O17P3S" hasOnlySubstanceUnits="false" id="M_b2coa_c" metaid="M_b2coa_c"
-      name="Crotonoyl-CoA">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_b2coa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/b2coa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CROTONYL-COA" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11531" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13921" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14031" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14032" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15473" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23408" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:36926" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:3928" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41612" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57332" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58669" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02009" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62466" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00877" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07050307" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM214" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00650" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="3" fbc:chemicalFormula="Fe" hasOnlySubstanceUnits="false" id="M_fe3_e" metaid="M_fe3_e" name="Iron (Fe3+)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_fe3_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/fe3" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13320" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21130" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24877" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29034" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:34755" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49595" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB12943" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C14819" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM196" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd10516" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-1" fbc:chemicalFormula="C4H6NO4" hasOnlySubstanceUnits="false" id="M_asp__L_e" metaid="M_asp__L_e"
-      name="L-Aspartate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_asp__L_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/asp__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:L-ASPARTATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13085" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:132943" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17053" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21244" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21247" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22659" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22660" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29991" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29992" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29993" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29995" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35391" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40853" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40900" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40913" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40942" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6193" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00191" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62186" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62501" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00049" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C16433" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00013" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM42" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00041" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd19181" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C4H9NO3" hasOnlySubstanceUnits="false" id="M_thr__L_e" metaid="M_thr__L_e"
-      name="L-Threonine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_thr__L_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/thr__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:THR" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13175" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16857" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21403" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26986" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32820" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32822" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32832" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32833" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42083" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45843" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45983" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57926" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6308" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00167" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00188" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00041" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM142" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00161" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H11NO3S" hasOnlySubstanceUnits="false" id="M_metsox_S__L_e" metaid="M_metsox_S__L_e"
-      name="L-Methionine Sulfoxide">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_metsox_S__L_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/metsox_S__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-8989" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-8990" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:L-Methionine-sulfoxides" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13142" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17016" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21361" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49031" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49032" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58772" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58773" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6272" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C02989" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C15998" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C15999" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2246" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01914" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd14720" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd14721" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15497" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15498" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd29319" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C6H4NO2" hasOnlySubstanceUnits="false" id="M_nac_c" metaid="M_nac_c" name="Nicotinate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_nac_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/nac" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:NIACINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14650" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15940" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22851" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25530" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25538" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32544" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44319" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7559" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01488" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00253" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00049" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM274" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00218" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C4H6O8P" hasOnlySubstanceUnits="false" id="M_4per_c" metaid="M_4per_c"
-      name="4-Phospho-D-erythronate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_4per_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/4per" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ERYTHRONATE-4P" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1924" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41926" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49003" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49055" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58766" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C03393" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1407" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02147" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="2" fbc:chemicalFormula="C5H16N2" hasOnlySubstanceUnits="false" id="M_15dap_e" metaid="M_15dap_e"
-      name="1,5-Diaminopentane">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_15dap_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/15dap" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CADAVERINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13928" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18127" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22974" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:3288" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44370" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58384" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02322" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01672" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM943" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01155" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C6H8O9P" hasOnlySubstanceUnits="false" id="M_2dh3dgal6p_c" metaid="M_2dh3dgal6p_c"
-      name="2-Dehydro-3-deoxy-D-galactonate 6-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2dh3dgal6p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2dh3dgal6p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DEHYDRO-DEOXY-GALACTONATE-PHOSPHATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1057" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11548" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17860" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19528" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58298" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01286" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM90136" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00945" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C20H24N10O19P4" hasOnlySubstanceUnits="false" id="M_ap4a_c" metaid="M_ap4a_c"
-      name="P1,P4-Bis(5'-adenosyl) tetraphosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ap4a_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ap4a" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ADENOSYL-P4" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12726" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12729" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17422" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21998" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58141" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7875" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06502" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01260" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1089" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00924" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C10H11N5O7P" hasOnlySubstanceUnits="false" id="M_35cgmp_c" metaid="M_35cgmp_c"
-      name="3',5'-Cyclic GMP">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_35cgmp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/35cgmp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CGMP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11675" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1327" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14377" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16356" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19829" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:39915" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44955" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44957" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57746" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01314" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00942" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM665" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00697" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C58H83CoN16O14P" hasOnlySubstanceUnits="false" id="M_adocbip_c" metaid="M_adocbip_c"
-      name="Adenosyl cobinamide phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_adocbip_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/adocbip" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ADENOSYLCOBINAMIDE-P" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2481" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58502" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB12184" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06509" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM856" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03919" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="1" fbc:chemicalFormula="C2H8NO" hasOnlySubstanceUnits="false" id="M_etha_e" metaid="M_etha_e"
-      name="Ethanolamine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_etha_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/etha" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ETHANOL-AMINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14223" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16000" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23979" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:272066" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42323" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4880" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57603" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00149" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62693" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00189" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D05074" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM218" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00162" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="1" fbc:chemicalFormula="K" hasOnlySubstanceUnits="false" id="M_k_p" metaid="M_k_p" name="Potassium">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_k_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/k" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:KCL" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26219" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29103" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49685" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8345" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00586" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00238" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C12568" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D01168" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D08403" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM95" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00205" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H10O5" hasOnlySubstanceUnits="false" id="M_xylu__L_p" metaid="M_xylu__L_p"
-      name="L-Xylulose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_xylu__L_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/xylu__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-XYLULOSE" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:L-XYLULOSE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13035" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13190" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17140" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17399" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21120" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21425" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27353" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4268" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46514" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6326" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00654" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00751" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01644" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02245" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00310" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00312" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM597" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00259" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00261" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C9H18O6N3Fe" hasOnlySubstanceUnits="false" id="M_fe3hox_e" metaid="M_fe3hox_e"
-      name="Fe(III)hydroxamate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_fe3hox_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/fe3hox" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2114" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21131" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28163" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4992" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06227" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM57764" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd12843" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C6H13NO8P" hasOnlySubstanceUnits="false" id="M_g3ps_p" metaid="M_g3ps_p"
-      name="Glycerophosphoserine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_g3ps_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/g3ps" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2030" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61931" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:62013" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:64765" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:64945" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM97117" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15468" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C9H16O4N2" hasOnlySubstanceUnits="false" id="M_ggbutal_c" metaid="M_ggbutal_c"
-      name="Gamma-glutamyl-gamma-butyraldehyde">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ggbutal_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ggbutal" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GAMMA-GLUTAMYL-GAMMA-AMINOBUTYRALDEH" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61508" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61521" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C15700" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1378" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd11341" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="CH3O3S" hasOnlySubstanceUnits="false" id="M_mso3_p" metaid="M_mso3_p"
-      name="Methanesulfonate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_mso3_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/mso3" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-3746" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25224" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27376" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6813" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C11145" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1485" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd08023" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C15H25N4O8" hasOnlySubstanceUnits="false" id="M_LalaDgluMdap_c"
-      metaid="M_LalaDgluMdap_c" name="L-alanine-D-glutamate-meso-2,6-diaminoheptanedioate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_LalaDgluMdap_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/LalaDgluMdap" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM90242" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15386" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C8H13N2O5" hasOnlySubstanceUnits="false" id="M_LalaLglu_c" metaid="M_LalaLglu_c"
-      name="L-alanine-L-glutamate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_LalaLglu_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/LalaLglu" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-1445" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61396" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61565" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C20958" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM4026" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15388" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C71H115N1O17P2" hasOnlySubstanceUnits="false" id="M_aragund_c" metaid="M_aragund_c"
-      name="O-acetyl-rhamanosyl-N-acetylglucosamyl-undecaprenyl diphosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_aragund_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/aragund" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2290" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM65126" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15410" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="C123H200N2O57P2" hasOnlySubstanceUnits="false" id="M_o16a2und_p" metaid="M_o16a2und_p"
-      name="(O16 antigen)x2 undecaprenyl diphosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_o16a2und_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/o16a2und" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM31520" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15516" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="1" fbc:chemicalFormula="C6H14NO2S" hasOnlySubstanceUnits="false" id="M_mmet_c" metaid="M_mmet_c"
-      name="S-Methyl-L-methionine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_mmet_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/mmet" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-397" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12772" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17728" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22057" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58252" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:67050" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8965" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C03172" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1119" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02027" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-2" fbc:chemicalFormula="C8H14NO9P" hasOnlySubstanceUnits="false" id="M_acgam1p_e" metaid="M_acgam1p_e"
-      name="N-Acetyl-D-glucosamine 1-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_acgam1p_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/acgam1p" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7125" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C04256" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM91871" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02611" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="C31H55O8P1" hasOnlySubstanceUnits="false" id="M_pa141_p" metaid="M_pa141_p"
-      name="1,2-ditetradec-7-enoyl-sn-glycerol 3-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pa141_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pa141" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM90512" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15523" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C31H56O5" hasOnlySubstanceUnits="false" id="M_12dgr141_p" metaid="M_12dgr141_p"
-      name="1,2-Diacyl-sn-glycerol (ditetradec-7-enoyl, n-C14:1)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_12dgr141_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/12dgr141" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM4940" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="C39H75O8P1" hasOnlySubstanceUnits="false" id="M_pa180_p" metaid="M_pa180_p"
-      name="1,2-dioctadecanoyl-sn-glycerol 3-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pa180_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pa180" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-1423" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:82921" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:83774" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMGP10010028" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM51279" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15526" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd26148" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C19H38NO7P1" hasOnlySubstanceUnits="false" id="M_2agpe141_c" metaid="M_2agpe141_c"
-      name="2-Acyl-sn-glycero-3-phosphoethanolamine (n-C14:1)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2agpe141_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2agpe141" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM3447" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C19H38NO7P1" hasOnlySubstanceUnits="false" id="M_1agpe141_p" metaid="M_1agpe141_p"
-      name="1-Acyl-sn-glycero-3-phosphoethanolamine (n-C14:1)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_1agpe141_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/1agpe141" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM6599" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C22H42O9P1" hasOnlySubstanceUnits="false" id="M_1agpg161_p" metaid="M_1agpg161_p"
-      name="1-Acyl-sn-glycero-3-phosphoglycerol (n-C16:1)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_1agpg161_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/1agpg161" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM6606" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-1" fbc:chemicalFormula="C8H13N2O5" hasOnlySubstanceUnits="false" id="M_LalaDglu_e" metaid="M_LalaDglu_e"
-      name="L-alanine-D-glutamate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_LalaDglu_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/LalaDglu" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2190" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61395" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61566" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C20957" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM3630" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15385" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="O2S10Fe4R" hasOnlySubstanceUnits="false" id="M_sufbcd_2fe2s2_c"
-      metaid="M_sufbcd_2fe2s2_c" name="SufBCD with two bound [2Fe-2S] clusters">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_sufbcd_2fe2s2_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/sufbcd_2fe2s2" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM148512" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C11H12Cl2N2O5" hasOnlySubstanceUnits="false" id="M_cm_e" metaid="M_cm_e"
-      name="Chloramphenicol">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cm_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cm" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CHLORAMPHENICOL" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13965" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17698" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23106" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23108" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:3603" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:47327" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:94390" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB14589" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00918" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00104" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM4519" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00680" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="3" fbc:chemicalFormula="C30H29FeN3O16" hasOnlySubstanceUnits="false" id="M_fe3dhbzs3_p" metaid="M_fe3dhbzs3_p"
-      name="2-3-dihydroxybenzoylserine trimer-Fe-III">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_fe3dhbzs3_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/fe3dhbzs3" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM146250" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C5H9O6" hasOnlySubstanceUnits="false" id="M_dxylnt_c" metaid="M_dxylnt_c"
-      name="D-Xylonate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dxylnt_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dxylnt" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C3H7N3O3" hasOnlySubstanceUnits="false" id="M_urdgci_c" metaid="M_urdgci_c"
-      name="S-ureidoglycine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_urdgci_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/urdgci" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="CO2" hasOnlySubstanceUnits="false" id="M_co2_c" metaid="M_co2_c" name="CO2 CO2">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_co2_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/co2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CARBON-DIOXIDE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13282" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13283" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13284" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13285" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16526" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23011" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:3283" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48829" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01967" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00011" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00004" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM13" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00011" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C12H20N2O9PS" hasOnlySubstanceUnits="false" id="M_4ppcys_c" metaid="M_4ppcys_c"
-      name="N-((R)-4-Phosphopantothenoyl)-L-cysteine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_4ppcys_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/4ppcys" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:R-4-PHOSPHOPANTOTHENOYL-L-CYSTEINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10987" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12438" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15769" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21461" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:328" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57507" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:59458" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C04352" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM483" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02666" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C4H7N4O4" hasOnlySubstanceUnits="false" id="M_alltt_c" metaid="M_alltt_c"
-      name="Allantoate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_alltt_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/alltt" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ALLANTOATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13760" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17536" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22352" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22353" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2593" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30837" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01209" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00499" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM584" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00388" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-2" fbc:chemicalFormula="C4H2O4" hasOnlySubstanceUnits="false" id="M_fum_e" metaid="M_fum_e" name="Fumarate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_fum_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/fum" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:FUM" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14284" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18012" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22956" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22957" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22958" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24122" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24124" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29806" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:36180" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:37154" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:37155" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42511" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42743" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5190" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00134" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00122" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D02308" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM93" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00106" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C2H4O" hasOnlySubstanceUnits="false" id="M_acald_e" metaid="M_acald_e"
-      name="Acetaldehyde">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_acald_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/acald" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ACETALD" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13703" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15343" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22158" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2383" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40533" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00990" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00084" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM75" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00071" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C9H14N5O8P" hasOnlySubstanceUnits="false" id="M_25drapp_c" metaid="M_25drapp_c"
-      name="2,5-Diamino-6-(ribosylamino)-4-(3H)-pyrimidinone 5'-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_25drapp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/25drapp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DIAMINO-OH-PHOSPHORIBOSYLAMINO-PYR" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11446" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19368" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29114" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58614" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:59545" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:59546" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:927" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01304" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM648" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00957" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd29703" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C20H30N6O12S2" hasOnlySubstanceUnits="false" id="M_gthox_c" metaid="M_gthox_c"
-      name="Oxidized glutathione">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_gthox_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/gthox" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:OXIDIZED-GLUTATHIONE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14328" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14720" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17858" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24336" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42832" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58297" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7840" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03337" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00127" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00031" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM151" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00111" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C7H14N2O8P" hasOnlySubstanceUnits="false" id="M_gar_c" metaid="M_gar_c"
-      name="N1-(5-Phospho-D-ribosyl)glycinamide">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_gar_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/gar" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:5-PHOSPHO-RIBOSYL-GLYCINEAMIDE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12623" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18349" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1983" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20499" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58457" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C03838" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM463" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02394" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C30H27N3O15" hasOnlySubstanceUnits="false" id="M_enter_c" metaid="M_enter_c"
-      name="Enterochelin">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_enter_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/enter" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ENTEROBACTIN" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23923" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28855" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:38150" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4799" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:77805" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05821" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM883" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03453" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C9H18O6N3Fe" hasOnlySubstanceUnits="false" id="M_fe3hox_p" metaid="M_fe3hox_p"
-      name="Fe(III)hydroxamate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_fe3hox_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/fe3hox" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2114" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21131" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28163" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4992" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06227" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM57764" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd12843" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C3H6O2" hasOnlySubstanceUnits="false" id="M_lald__D_c" metaid="M_lald__D_c"
-      name="D-Lactaldehyde">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_lald__D_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/lald__D" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-358" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11000" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17167" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18683" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:340" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06458" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06949" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00937" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM909" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00693" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-3" fbc:chemicalFormula="C9H18O6N3" hasOnlySubstanceUnits="false" id="M_fe3hox_un_e" metaid="M_fe3hox_un_e"
-      name="Fe(III)hydoxamate, unloaded">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_fe3hox_un_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/fe3hox_un" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2175" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM90823" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15461" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C8H11NO3" hasOnlySubstanceUnits="false" id="M_pydxn_e" metaid="M_pydxn_e"
-      name="Pyridoxine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pydxn_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pydxn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PYRIDOXINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14981" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16709" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26429" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8671" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00239" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02075" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00314" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D08454" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM419" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00263" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="1" fbc:chemicalFormula="C8H12NO" hasOnlySubstanceUnits="false" id="M_tym_e" metaid="M_tym_e" name="Tyramine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_tym_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/tym" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TYRAMINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15276" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15760" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27174" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:327995" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9799" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00306" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62629" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00483" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM603" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00374" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C19H33N2O9PRS" hasOnlySubstanceUnits="false" id="M_3ooctACP_c" metaid="M_3ooctACP_c"
-      name="3-Oxooctanoyl-[acyl-carrier protein]">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_3ooctACP_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/3ooctACP" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:3-Oxo-octanoyl-ACPs" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1646" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05750" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07060008" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM28031" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd11490" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C21H41O7P1" hasOnlySubstanceUnits="false" id="M_1odecg3p_c" metaid="M_1odecg3p_c"
-      name="1-octadecanoyl-sn-glycerol 3-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_1odecg3p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/1odecg3p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2113" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:74565" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:74850" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMGP10050005" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM32950" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15329" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C17H36NO7P1" hasOnlySubstanceUnits="false" id="M_2agpe120_p" metaid="M_2agpe120_p"
-      name="2-Acyl-sn-glycero-3-phosphoethanolamine (n-C12:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2agpe120_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2agpe120" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2178" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM34808" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd26439" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C22H44O9P1" hasOnlySubstanceUnits="false" id="M_2agpg160_p" metaid="M_2agpg160_p"
-      name="2-Acyl-sn-glycero-3-phosphoglycerol (n-C16:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2agpg160_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2agpg160" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-8363" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM34740" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd25200" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C22H42O9P1" hasOnlySubstanceUnits="false" id="M_2agpg161_p" metaid="M_2agpg161_p"
-      name="2-Acyl-sn-glycero-3-phosphoglycerol (n-C16:1)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2agpg161_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2agpg161" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM3453" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="C17H31O7P1" hasOnlySubstanceUnits="false" id="M_1tdec7eg3p_p" metaid="M_1tdec7eg3p_p"
-      name="1-tetradec-7-enoyl-sn-glycerol 3-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_1tdec7eg3p_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/1tdec7eg3p" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM91053" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15330" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C20H40O9P1" hasOnlySubstanceUnits="false" id="M_1agpg140_p" metaid="M_1agpg140_p"
-      name="1-Acyl-sn-glycero-3-phosphoglycerol (n-C14:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_1agpg140_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/1agpg140" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2143" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:72826" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:73092" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMGP04050012" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM6603" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd26429" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="H4O2S10Fe4R" hasOnlySubstanceUnits="false" id="M_sufbcd_4fe4s_c"
-      metaid="M_sufbcd_4fe4s_c" name="SufBCD with bound [4Fe-4S] cluster">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_sufbcd_4fe4s_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/sufbcd_4fe4s" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM148511" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C43H58N4O12" hasOnlySubstanceUnits="false" id="M_rfamp_e" metaid="M_rfamp_e"
-      name="Rifampin">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_rfamp_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/rfamp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-18727" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26577" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28077" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45308" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:71365" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8858" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB15179" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06688" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00211" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM80952" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd04089" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C43H58N4O12" hasOnlySubstanceUnits="false" id="M_rfamp_p" metaid="M_rfamp_p"
-      name="Rifampin">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_rfamp_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/rfamp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-18727" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26577" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28077" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45308" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:71365" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8858" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB15179" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06688" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00211" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM80952" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd04089" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="CH4" hasOnlySubstanceUnits="false" id="M_ch4_c" metaid="M_ch4_c" name="Methane">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ch4_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ch4" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CH4" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:METHYL-GROUP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14585" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16183" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25220" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29360" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29434" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29438" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6811" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02714" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01438" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM714" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01024" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd27447" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C6H9O3" hasOnlySubstanceUnits="false" id="M_3mop_c" metaid="M_3mop_c"
-      name="(S)-3-Methyl-2-oxopentanoate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_3mop_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/3mop" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:2-KETO-3-METHYL-VALERATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10888" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11049" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15614" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18567" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18568" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18755" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:213" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35146" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:401" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00671" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01020275" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM439" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00508" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C27H31N9O15P2" hasOnlySubstanceUnits="false" id="M_fad_c" metaid="M_fad_c"
-      name="Flavin adenine dinucleotide oxidized">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_fad_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/fad" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:FAD" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13315" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16238" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21125" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42388" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4956" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57692" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01248" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00016" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00005" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM33" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00015" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="1" fbc:chemicalFormula="C6H15N2O2" hasOnlySubstanceUnits="false" id="M_36dahx_c" metaid="M_36dahx_c"
-      name="(3S)-3,6-Diaminohexanoate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_36dahx_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/36dahx" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-233" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10885" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15613" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18564" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:206" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57434" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB12114" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01142" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1865" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00840" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C55H89O4P" hasOnlySubstanceUnits="false" id="M_udcpp_c" metaid="M_udcpp_c"
-      name="Undecaprenyl phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_udcpp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/udcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:UNDECAPRENYL-P" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15285" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15286" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16141" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57654" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9864" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00348" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMPR03020006" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM251" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00286" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C14H14N5O11P" hasOnlySubstanceUnits="false" id="M_dcamp_c" metaid="M_dcamp_c"
-      name="N6-(1,2-Dicarboxyethyl)-AMP">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dcamp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dcamp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ADENYLOSUCC" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12656" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12657" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15919" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21857" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22262" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:39869" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57567" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7405" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB59653" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C03794" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM565" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02375" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C5H7O4" hasOnlySubstanceUnits="false" id="M_4h2opntn_c" metaid="M_4h2opntn_c"
-      name="4-Hydroxy-2-oxopentanoate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_4h2opntn_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/4h2opntn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-14442" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11994" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17655" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1840" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20377" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58222" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C03589" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1176" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02258" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C10H11N5O6P" hasOnlySubstanceUnits="false" id="M_camp_c" metaid="M_camp_c"
-      name="CAMP C10H11N5O6P">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_camp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/camp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CAMP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11673" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1325" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17489" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19827" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41588" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58165" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00058" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00575" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM243" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00446" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-1" fbc:chemicalFormula="C6H9O7" hasOnlySubstanceUnits="false" id="M_galur_e" metaid="M_galur_e"
-      name="D-Galacturonate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_galur_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/galur" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-Galactopyranuronate" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18024" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20976" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20978" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4153" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:75525" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00333" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM48464" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00280" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C11H21N2O7PRS" hasOnlySubstanceUnits="false" id="M_ACP_c" metaid="M_ACP_c"
-      name="Acyl carrier protein">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ACP_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ACP" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ACP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14405" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18359" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2458" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00229" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM925" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd11493" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C27H51N2O8PRS" hasOnlySubstanceUnits="false" id="M_palmACP_c" metaid="M_palmACP_c"
-      name="Palmitoyl-ACP (n-C16:0ACP)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_palmACP_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/palmACP" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2026" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C22H33FeN4O13" hasOnlySubstanceUnits="false" id="M_arbtn_fe3_c" metaid="M_arbtn_fe3_c"
-      name="Aerobactin">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_arbtn_fe3_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/arbtn_fe3" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:AEROBACTIN" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2234" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13745" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18157" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2499" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58396" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB04051" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05554" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1464" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03294" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd26452" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="HO4P" hasOnlySubstanceUnits="false" id="M_pi_p" metaid="M_pi_p" name="Phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pi_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pi" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-16459" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-9010" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PHOSPHATE-GROUP" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:Pi" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14791" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18367" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26078" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29137" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29139" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35780" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:39739" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:39745" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43470" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43474" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45024" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7793" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00973" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01429" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02105" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02142" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB05947" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00009" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C13558" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D05467" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM9" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00009" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd27787" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="H2" hasOnlySubstanceUnits="false" id="M_h2_p" metaid="M_h2_p" name="Hydrogen">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_h2_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/h2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:HYDROGEN-MOLECULE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13350" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18276" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25363" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29294" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29298" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29299" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5785" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01362" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00282" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM195" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd11640" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C2H6O" hasOnlySubstanceUnits="false" id="M_etoh_p" metaid="M_etoh_p" name="Ethanol">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_etoh_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/etoh" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ETOH" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14222" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16236" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23978" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30878" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30880" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42377" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44594" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4879" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:52092" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00108" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00469" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00068" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D02798" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D04855" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D06542" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM303" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00363" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="O4W1" hasOnlySubstanceUnits="false" id="M_tungs_c" metaid="M_tungs_c" name="Tungstate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_tungs_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/tungs" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TUNGSTATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30518" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:36271" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:36272" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46497" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46502" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C20679" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM88308" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15574" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C22H33N4O13" hasOnlySubstanceUnits="false" id="M_arbtn_c" metaid="M_arbtn_c"
-      name="Aerobactin minus Fe3">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_arbtn_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/arbtn" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM96506" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15411" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-2" fbc:chemicalFormula="C25H46N6O8" hasOnlySubstanceUnits="false" id="M_feoxam_un_e" metaid="M_feoxam_un_e"
-      name="Ferroxamine minus Fe(3)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_feoxam_un_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/feoxam_un" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM90827" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15463" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="C9H11N2O9P" hasOnlySubstanceUnits="false" id="M_ump_p" metaid="M_ump_p"
-      name="UMP C9H11N2O9P">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ump_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ump" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:UMP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13508" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13509" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16695" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27231" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46362" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46382" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46385" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:47721" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57865" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9849" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00105" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM80" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00091" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="C9H12N3O8P" hasOnlySubstanceUnits="false" id="M_cmp_p" metaid="M_cmp_p"
-      name="CMP C9H12N3O8P">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cmp_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cmp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CMP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13274" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17361" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23520" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:3275" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41312" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41319" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41666" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41691" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:47362" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48799" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58120" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:60377" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00055" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.glycan/G10621" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM31" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00046" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-1" fbc:chemicalFormula="C10H11N5O7P" hasOnlySubstanceUnits="false" id="M_23cgmp_e" metaid="M_23cgmp_e"
-      name="2',3'-Cyclic GMP">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_23cgmp_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/23cgmp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-3709" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19214" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28181" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:60837" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:825" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06194" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM3149" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03702" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C10H10NO6" hasOnlySubstanceUnits="false" id="M_23dhbzs_c" metaid="M_23dhbzs_c"
-      name="2,3-dihydroxybenzoylserine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_23dhbzs_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/23dhbzs" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:N-23-DIHYDROXYBENZOYL-L-SERINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12428" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17455" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21467" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58154" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7084" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C04204" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1487" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02582" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15332" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-2" fbc:chemicalFormula="C3H6NO6P" hasOnlySubstanceUnits="false" id="M_pser__L_e" metaid="M_pser__L_e"
-      name="O-Phospho-L-serine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pser__L_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pser__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:3-P-SERINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12718" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15811" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21966" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57524" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7692" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00272" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01005" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM379" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00738" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="O2S" hasOnlySubstanceUnits="false" id="M_so2_c" metaid="M_so2_c" name="Sulfur dioxide">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_so2_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/so2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:SULFUR-DIOXIDE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18422" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45789" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:8992" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9351" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB34834" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C09306" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D05961" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM4835" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd06201" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C44H79N3O15P2" hasOnlySubstanceUnits="false" id="M_cdpdhdecg_c" metaid="M_cdpdhdecg_c"
-      name="CDP-1,2-dihexadecanoylglycerol">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cdpdhdecg_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cdpdhdecg" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM3232" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15419" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C16H29O2" hasOnlySubstanceUnits="false" id="M_hdcea_p" metaid="M_hdcea_p"
-      name="Hexadecenoate (n-C16:1)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_hdcea_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/hdcea" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM950" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C23H48NO7P1" hasOnlySubstanceUnits="false" id="M_2agpe180_c" metaid="M_2agpe180_c"
-      name="2-Acyl-sn-glycero-3-phosphoethanolamine (n-C18:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2agpe180_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2agpe180" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2223" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:133144" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:133145" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB11129" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMGP02050038" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM34811" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15341" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd26450" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C3H5O3" hasOnlySubstanceUnits="false" id="M_3hpp_c" metaid="M_3hpp_c"
-      name="3-Hydroxypropanoate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_3hpp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/3hpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:3-HYDROXY-PROPIONATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11836" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1553" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16510" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20071" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20079" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:33404" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40000" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01013" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM872" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00745" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C23H27N3O7" hasOnlySubstanceUnits="false" id="M_mincyc_e" metaid="M_mincyc_e"
-      name="Minocycline">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_mincyc_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/mincyc" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-19259" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44053" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:50694" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6939" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:71337" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:77906" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB15152" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C07225" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D05045" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMPK07000002" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM128081" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd04461" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C21H22O6" hasOnlySubstanceUnits="false" id="M_dhcur_c" metaid="M_dhcur_c"
-      name="Dihydrocurcumin">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dhcur_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dhcur" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C6H12O5" hasOnlySubstanceUnits="false" id="M_rml_c" metaid="M_rml_c" name="L-Rhamnulose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_rml_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/rml" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-16566" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13161" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17897" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21380" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58316" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6293" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB10207" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00861" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1750" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00642" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C4H6NO7P" hasOnlySubstanceUnits="false" id="M_4pasp_c" metaid="M_4pasp_c"
-      name="4-Phospho-L-aspartate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_4pasp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/4pasp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:L-BETA-ASPARTYL-P" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12042" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13062" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15836" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1925" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20471" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20472" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21246" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30407" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57535" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB12250" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C03082" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1177" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01977" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="H2O" hasOnlySubstanceUnits="false" id="M_h2o_e" metaid="M_h2o_e" name="H2O H2O">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_h2o_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/h2o" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-15815" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:HYDROXYL-GROUP" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:OH" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:OXONIUM" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:WATER" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10743" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13352" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13365" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13419" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15377" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16234" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27313" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29356" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29373" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29374" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29375" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29412" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30490" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:33806" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:33811" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:33813" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41979" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41981" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42043" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42857" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43228" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44292" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44641" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44701" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44819" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5585" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5594" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02111" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00001" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01328" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C18714" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00001" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D03703" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D06322" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00001" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15275" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd27222" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C35H58N7O18P3S" hasOnlySubstanceUnits="false" id="M_3htdcoa_c" metaid="M_3htdcoa_c"
-      name="(S)-3-Hydroxytetradecanoyl-CoA">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_3htdcoa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/3htdcoa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2171" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18754" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27466" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:400" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:62614" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03934" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05260" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07050257" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM767" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03115" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd26436" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H10O5" hasOnlySubstanceUnits="false" id="M_rib__D_e" metaid="M_rib__D_e"
-      name="D-Ribose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_rib__D_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/rib__D" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-Ribofuranose" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-Ribopyranose" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13011" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16988" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21078" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4233" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46999" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:47006" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:47013" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00283" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00121" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C21057" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM242" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00105" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C9H12N2O6" hasOnlySubstanceUnits="false" id="M_uri_e" metaid="M_uri_e" name="Uridine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_uri_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/uri" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:URIDINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15296" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16704" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27227" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46386" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46391" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46460" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46463" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9893" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00296" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00299" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM288" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00249" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C11H12N2O2" hasOnlySubstanceUnits="false" id="M_trp__L_e" metaid="M_trp__L_e"
-      name="L-Tryptophan">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_trp__L_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/trp__L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13178" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16828" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:184633" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21407" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27163" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27897" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32702" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32704" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32727" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32728" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45988" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46086" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46125" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46225" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57912" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6310" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:64554" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9769" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00929" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB30396" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00078" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00806" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00020" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM94" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00065" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd19007" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C48H74O3" hasOnlySubstanceUnits="false" id="M_2ommbl_c" metaid="M_2ommbl_c"
-      name="2-Octaprenyl-3-methyl-6-methoxy- 1,4-benzoquinol">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_2ommbl_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/2ommbl" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB11661" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM35383" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15361" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C10H12N4O4" hasOnlySubstanceUnits="false" id="M_din_e" metaid="M_din_e"
-      name="Deoxyinosine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_din_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/din" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DEOXYINOSINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19248" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23629" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28997" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:39841" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43293" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43436" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43437" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4413" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00071" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05512" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM935" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03279" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-6" fbc:chemicalFormula="C84H148N2O37P2" hasOnlySubstanceUnits="false" id="M_kdo2lipid4_c"
-      metaid="M_kdo2lipid4_c" name="KDO(2)-lipid IV(A)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_kdo2lipid4_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/kdo2lipid4" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:KDO2-LIPID-IVA" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23657" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28526" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4477" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:60365" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06025" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.glycan/G11160" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMSL02000003" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM824" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03586" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-3" fbc:chemicalFormula="C15H19N2O18P2" hasOnlySubstanceUnits="false" id="M_udpglcur_c" metaid="M_udpglcur_c"
-      name="UDP-D-glucuronate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_udpglcur_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/udpglcur" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:UDP-GLUCURONATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13489" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13506" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17200" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22104" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46309" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58052" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9846" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00167" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.glycan/G10612" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM87" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00144" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C10H15N2O4S" hasOnlySubstanceUnits="false" id="M_btnso_c" metaid="M_btnso_c"
-      name="D-biotin d-sulfoxide">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_btnso_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/btnso" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-722" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:62046" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:62193" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C20386" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM3932" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15414" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="H2O3PSe" hasOnlySubstanceUnits="false" id="M_selnp_c" metaid="M_selnp_c"
-      name="Selenophosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_selnp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/selnp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:SEPO3" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15078" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16144" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29269" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58618" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:64331" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9101" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03840" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06407" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05172" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1339" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03078" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C7H12O13P2" hasOnlySubstanceUnits="false" id="M_gmhep17bp_c" metaid="M_gmhep17bp_c"
-      name="D-Glycero-D-manno-heptose 1,7-bisphosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_gmhep17bp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/gmhep17bp" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4188" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:59957" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM48518" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd29677" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C4H6N4O3" hasOnlySubstanceUnits="false" id="M_alltn_p" metaid="M_alltn_p"
-      name="Allantoin">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_alltn_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/alltn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ALLANTOIN" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13761" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15676" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22354" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2594" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:74345" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00462" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01551" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00121" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM612" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01092" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C10H13N5O3" hasOnlySubstanceUnits="false" id="M_dad_2_p" metaid="M_dad_2_p"
-      name="Deoxyadenosine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dad_2_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dad_2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DEOXYADENOSINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14112" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17256" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19234" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:39863" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40535" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40560" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40565" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4405" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00101" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB05778" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB11722" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00559" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM625" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00438" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C12H21O14P" hasOnlySubstanceUnits="false" id="M_suc6p_c" metaid="M_suc6p_c"
-      name="Sucrose 6-phosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_suc6p_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/suc6p" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-15716" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:SUCROSE-6P" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:131603" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15129" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15130" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16308" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26813" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57723" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:91002" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9315" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C02591" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C16688" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.glycan/G10508" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1004" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01693" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd19187" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="1" fbc:chemicalFormula="C2H8NO" hasOnlySubstanceUnits="false" id="M_etha_p" metaid="M_etha_p"
-      name="Ethanolamine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_etha_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/etha" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ETHANOL-AMINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14223" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16000" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23979" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:272066" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42323" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4880" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57603" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00149" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62693" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00189" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D05074" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM218" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00162" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-2" fbc:chemicalFormula="C10H12N5O7P" hasOnlySubstanceUnits="false" id="M_dgmp_p" metaid="M_dgmp_p"
-      name="DGMP C10H12N5O7P">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dgmp_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dgmp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DGMP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10496" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14074" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16192" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19246" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41902" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41939" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:41944" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42676" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42726" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42733" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45049" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:47449" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57673" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00362" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM546" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00296" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="1" fbc:chemicalFormula="C3H9N2O2" hasOnlySubstanceUnits="false" id="M_23dappa_p" metaid="M_23dappa_p"
-      name="2,3-diaminopropionate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_23dappa_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/23dappa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:23-Diaminopropanoate" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:L-23-DIAMINOPROPANOATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11419" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13043" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16303" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18383" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19309" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21190" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42159" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42164" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49983" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57721" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58468" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6153" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:84374" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:876" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02006" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C03401" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06393" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA01100051" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM91374" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02150" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03828" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd21925" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C9H18O11P" hasOnlySubstanceUnits="false" id="M_g3pi_p" metaid="M_g3pi_p"
-      name="Sn-Glycero-3-phospho-1-inositol">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_g3pi_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/g3pi" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-541" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10645" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11200" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18321" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26695" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58444" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:64715" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB11649" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01225" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1517" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00902" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-1" fbc:chemicalFormula="C10H11N5O6P" hasOnlySubstanceUnits="false" id="M_23camp_e" metaid="M_23camp_e"
-      name="2',3'-Cyclic AMP">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_23camp_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/23camp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-3707" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19212" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27844" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40469" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:60879" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:823" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C02353" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2598" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01570" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C60H100N1O7P1" hasOnlySubstanceUnits="false" id="M_uLa4n_p" metaid="M_uLa4n_p"
-      name="Undecaprenyl phosphate-4-amino-4-deoxy-L-arabinose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_uLa4n_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/uLa4n" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM90891" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15576" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="1" fbc:chemicalFormula="Cu" hasOnlySubstanceUnits="false" id="M_cu_c" metaid="M_cu_c" name="Cu+">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cu_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cu" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:23379" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49551" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:49552" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM3568" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd30760" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-4" fbc:chemicalFormula="C35H52N6O13" hasOnlySubstanceUnits="false" id="M_cpgn_un_p" metaid="M_cpgn_un_p"
-      name="Coprogen unloaded (no Fe(III))">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cpgn_un_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cpgn_un" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2262" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM2999" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15438" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C34H61N1O10P1" hasOnlySubstanceUnits="false" id="M_ps141_c" metaid="M_ps141_c"
-      name="Phosphatidylserine (ditetradec-7-enoyl, n-C14:1)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ps141_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ps141" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM7664" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-3" fbc:chemicalFormula="C34H61O13P2" hasOnlySubstanceUnits="false" id="M_pgp141_p" metaid="M_pgp141_p"
-      name="Phosphatidylglycerophosphate (ditetradec-7-enoyl, n-C14:1)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pgp141_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pgp141" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM5271" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-3" fbc:chemicalFormula="C42H81O13P2" hasOnlySubstanceUnits="false" id="M_pgp180_p" metaid="M_pgp180_p"
-      name="Phosphatidylglycerophosphate (dioctadecanoyl, n-C18:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_pgp180_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/pgp180" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-12820" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM75104" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15547" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd23598" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="1" fbc:chemicalFormula="C12H25N2O7" hasOnlySubstanceUnits="false" id="M_psclys_p" metaid="M_psclys_p"
-      name="Psicoselysine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_psclys_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/psclys" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PSICOSELYSINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61403" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61425" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM6409" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15559" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C12H12N2O5" hasOnlySubstanceUnits="false" id="M_4abzglu_c" metaid="M_4abzglu_c"
-      name="4-aminobenzoyl-glutamate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_4abzglu_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/4abzglu" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-1" fbc:chemicalFormula="C3H7O5S" hasOnlySubstanceUnits="false" id="M_dhps_e" metaid="M_dhps_e"
-      name="2,3-Dihydroxypropane-1-sulfonate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dhps_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dhps" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C4H8O4" hasOnlySubstanceUnits="false" id="M_erthrs_c" metaid="M_erthrs_c"
-      name="D-erythrose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_erthrs_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/erthrs" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-5" fbc:chemicalFormula="C25H35N7O19P3S" hasOnlySubstanceUnits="false" id="M_succoa_c" metaid="M_succoa_c"
-      name="Succinyl-CoA">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_succoa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/succoa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:SUC-COA" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10746" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15127" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15380" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26811" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45541" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57292" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9310" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01022" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00091" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07050370" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM92" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00078" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H10O5" hasOnlySubstanceUnits="false" id="M_xyl__D_c" metaid="M_xyl__D_c"
-      name="D-Xylose">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_xyl__D_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/xyl__D" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-Xylopyranose" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:53455" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:65327" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00098" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03763" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00181" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D06346" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM348" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00154" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-1" fbc:chemicalFormula="C4H5O3" hasOnlySubstanceUnits="false" id="M_sucsal_c" metaid="M_sucsal_c"
-      name="Succinic semialdehyde">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_sucsal_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/sucsal" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:SUCC-S-ALD" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15126" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16265" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26804" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26805" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57706" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9305" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01259" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00232" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA06000118" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM172" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00199" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C4H6N4O3" hasOnlySubstanceUnits="false" id="M_alltn_c" metaid="M_alltn_c"
-      name="Allantoin">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_alltn_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/alltn" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ALLANTOIN" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13761" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15676" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22354" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2594" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:74345" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00462" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01551" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00121" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM612" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01092" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-4" fbc:chemicalFormula="C31H50N7O18P3S" hasOnlySubstanceUnits="false" id="M_3hdcoa_c" metaid="M_3hdcoa_c"
-      name="(S)-3-Hydroxydecanoyl-CoA">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_3hdcoa_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/3hdcoa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2244" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18779" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28325" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:418" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:62616" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03938" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05264" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07050014" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMFA07050154" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM674" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03118" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="C6H14O6" hasOnlySubstanceUnits="false" id="M_mnl_e" metaid="M_mnl_e" name="D-Mannitol">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_mnl_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/mnl" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:MANNITOL" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12996" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:130180" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14574" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16899" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21050" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25163" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29864" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44192" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6686" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00765" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01363" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00392" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00062" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM615" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00314" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-1" fbc:chemicalFormula="CH1O2" hasOnlySubstanceUnits="false" id="M_for_e" metaid="M_for_e" name="Formate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_for_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/for" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CARBOXYL-GROUP" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-9845" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD1G-1532" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD1G-1533" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD1G-1534" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD1G-1535" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:FORMATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14276" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15740" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24081" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24082" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30751" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42460" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5145" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00142" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00058" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM39" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00047" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd22511" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-5" fbc:chemicalFormula="C76H137N2O30P2" hasOnlySubstanceUnits="false" id="M_kdolipid4_c" metaid="M_kdolipid4_c"
-      name="KDO-lipid IV(A)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_kdolipid4_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/kdolipid4" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:KDO-LIPID-IVA" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1496" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20009" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27439" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:60364" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06024" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.glycan/G11161" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1206" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03585" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="0" fbc:chemicalFormula="C13H19N6O9P" hasOnlySubstanceUnits="false" id="M_seramp_c" metaid="M_seramp_c"
-      name="L-seryl-AMP">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_seramp_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/seramp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:SERYL-AMP" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:286" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61231" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:61645" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C05820" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM114390" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03452" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15564" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C5H5N5" hasOnlySubstanceUnits="false" id="M_ade_p" metaid="M_ade_p" name="Adenine">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_ade_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/ade" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ADENINE" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ADENINE-RING" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13733" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16708" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22236" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2470" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:40579" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00034" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00147" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00034" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM168" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00128" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd22238" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C6H14O6" hasOnlySubstanceUnits="false" id="M_sbt__D_p" metaid="M_sbt__D_p"
-      name="D-Sorbitol">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_sbt__D_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/sbt__D" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:SORBITOL" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12954" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13020" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15093" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17220" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17924" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21091" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26724" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26726" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30911" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:33795" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:33796" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4246" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45559" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:87978" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:9201" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00247" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00794" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00096" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM469" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00588" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C3H8O2" hasOnlySubstanceUnits="false" id="M_12ppd__S_p" metaid="M_12ppd__S_p"
-      name="(S)-Propane-1,2-diol">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_12ppd__S_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/12ppd__S" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PROPANE-1-2-DIOL" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18799" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29002" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:440" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:45065" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06213" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C02917" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1255" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd19024" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C10H19O2" hasOnlySubstanceUnits="false" id="M_dca_p" metaid="M_dca_p"
-      name="Decanoate (n-C10:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_dca_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/dca" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM162295" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-3" fbc:chemicalFormula="C12H10FeO14" hasOnlySubstanceUnits="false" id="M_fe3dcit_p" metaid="M_fe3dcit_p"
-      name="Fe(III)dicitrate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_fe3dcit_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/fe3dcit" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C06229" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM146388" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd03725" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="0" fbc:chemicalFormula="H2O2" hasOnlySubstanceUnits="false" id="M_h2o2_e" metaid="M_h2o2_e"
-      name="Hydrogen peroxide">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_h2o2_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/h2o2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:HYDROGEN-PEROXIDE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13354" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13355" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16240" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24637" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25940" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29192" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29370" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44782" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44785" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44812" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5586" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03125" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06491" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00027" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C17732" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C18566" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D00008" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM22" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00025" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-1" fbc:chemicalFormula="C9H10N2O8P" hasOnlySubstanceUnits="false" id="M_23cump_e" metaid="M_23cump_e"
-      name="2',3'-Cyclic UMP">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_23cump_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/23cump" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD-3725" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:19215" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28637" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:60873" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:826" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C02355" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM3150" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd01572" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-4" fbc:chemicalFormula="C103H162N6O37P2" hasOnlySubstanceUnits="false" id="M_eca2und_p" metaid="M_eca2und_p"
-      name="(enterobacterial common antigen)x2 undecaprenyl-diphosphate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_eca2und_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/eca2und" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM31479" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15455" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="Cl" hasOnlySubstanceUnits="false" id="M_cl_p" metaid="M_cl_p" name="Chloride">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_cl_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/cl" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CL-" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:HCL" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13291" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13364" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13970" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17883" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17996" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24635" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:3616" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:3731" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:48804" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:50315" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5590" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00492" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02073" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02162" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02306" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C00698" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C01327" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D02057" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM43" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00099" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-4" fbc:chemicalFormula="C71H109N13O39" hasOnlySubstanceUnits="false" id="M_murein4p3p_p" metaid="M_murein4p3p_p"
-      name="Two linked disacharide tetrapeptide and tripeptide murein units (uncrosslinked, middle of chain)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_murein4p3p_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/murein4p3p" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM88346" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15504" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="0" fbc:chemicalFormula="C35H68O5" hasOnlySubstanceUnits="false" id="M_12dgr160_p" metaid="M_12dgr160_p"
-      name="1,2-Diacyl-sn-glycerol (dihexadecanoyl, n-C16:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_12dgr160_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/12dgr160" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM3132" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC19" constant="false" fbc:charge="-1" fbc:chemicalFormula="C18H36O9P1" hasOnlySubstanceUnits="false" id="M_1agpg120_p" metaid="M_1agpg120_p"
-      name="1-Acyl-sn-glycero-3-phosphoglycerol (n-C12:0)">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_1agpg120_p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/1agpg120" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPD0-2144" />
-                  <rdf:li rdf:resource="http://identifiers.org/lipidmaps/LMGP04050011" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM32695" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd26430" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC2" constant="false" fbc:charge="-2" fbc:chemicalFormula="O4W1" hasOnlySubstanceUnits="false" id="M_tungs_e" metaid="M_tungs_e" name="Tungstate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_tungs_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/tungs" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TUNGSTATE" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30518" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:36271" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:36272" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46497" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:46502" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C20679" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM88308" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15574" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species boundaryCondition="false" compartment="MNXC3" constant="false" fbc:charge="-2" fbc:chemicalFormula="C20H21N7O7" hasOnlySubstanceUnits="false" id="M_5fthf_c" metaid="M_5fthf_c"
-      name="5-Formyltetrahydrofolate">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#M_5fthf_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/5fthf" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:5-FORMYL-THF" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:12127" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15640" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18607" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:2057" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57457" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:63606" />
-                  <rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:65340" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01562" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06206" />
-                  <rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62757" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.compound/C03479" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.drug/D07986" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM1392" />
-                  <rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd02197" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </species>
-    </listOfSpecies>
-    <listOfParameters>
-      <parameter constant="true" id="cobra_default_lb" name="cobra default - lb" sboTerm="SBO:0000626" units="mmol_per_gDW_per_hr" value="-1000" />
-      <parameter constant="true" id="cobra_default_ub" name="cobra default - ub" sboTerm="SBO:0000626" units="mmol_per_gDW_per_hr" value="1000" />
-      <parameter constant="true" id="cobra_0_bound" name="cobra 0 - bound" sboTerm="SBO:0000625" units="mmol_per_gDW_per_hr" value="0" />
-      <parameter constant="true" id="R_EX_glc__D_e_lower_bound" name="R EX glc-D e lower - bound" sboTerm="SBO:0000625" units="mmol_per_gDW_per_hr" value="-10" />
-      <parameter constant="true" id="R_ATPM_lower_bound" name="R ATPM lower - bound" sboTerm="SBO:0000625" units="mmol_per_gDW_per_hr" value="6.86" />
-    </listOfParameters>
-    <listOfReactions>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ALATA_D2" metaid="R_ALATA_D2" name="D-alanine transaminase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ALATA_D2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ALATA_D2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-5240" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01147" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95697" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28562" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28563" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28564" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28565" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2551" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0870" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ala__D_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pydx5p_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pyam5p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pyr_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_SHCHD2" metaid="R_SHCHD2" name="Sirohydrochlorin dehydrogenase (NAD)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_SHCHD2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/SHCHD2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DIMETHUROPORDEHYDROG-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.3.1.76" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R03947" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104373" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15613" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15614" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15615" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15616" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3368" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dscl_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nad_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadh_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_scl_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CPPPGO" metaid="R_CPPPGO" name="Coproporphyrinogen oxidase (O2 required)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CPPPGO">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CPPPGO" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-1461" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.3.3.3" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R03220" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96880" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18257" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18258" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18259" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18260" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2436" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cpppg3_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_o2_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pppg9_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_GTHOr" metaid="R_GTHOr" name="Glutathione oxidoreductase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GTHOr">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GTHOr" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLUTATHIONE-REDUCT-NADPH-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.8.1.7" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00115" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100098" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11740" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11741" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11742" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11743" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3500" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gthox_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gthrd_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DHORD5" metaid="R_DHORD5" name="Dihydroorotic acid (menaquinone-8)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DHORD5">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DHORD5" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97421" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29199" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29200" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29201" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29202" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0945" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dhor__S_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mqn8_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_mql8_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_orot_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GLYCTO2" metaid="R_GLYCTO2" name="Glycolate oxidase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLYCTO2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLYCTO2" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100339" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b4468" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2979" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4467" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glyclt_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_q8_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glx_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_q8h2_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GLYCTO3" metaid="R_GLYCTO3" name="Glycolate oxidase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLYCTO3">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLYCTO3" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100340" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b4468" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2979" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4467" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glyclt_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mqn8_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glx_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_mql8_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GLYCTO4" metaid="R_GLYCTO4" name="Glycolate oxidase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLYCTO4">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLYCTO4" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100341" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b4468" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2979" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4467" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2dmmq8_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glyclt_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2dmmql8_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glx_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PFK_3" metaid="R_PFK_3" name="Phosphofructokinase (s7p)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PFK_3">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PFK_3" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-6541" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.1.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.1.11" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01843" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102510" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/31443" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/31444" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/31445" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/31446" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3916" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_s7p_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_s17bp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_TRPS2" metaid="R_TRPS2" name="Tryptophan synthase (indole)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_TRPS2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/TRPS2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-2382" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.122" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.20" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00674" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104946" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/26434" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/26435" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/26436" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/26437" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b1260" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1261" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_indole_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ser__L_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_trp__L_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_G3PD5" metaid="R_G3PD5" name="Glycerol-3-phosphate dehydrogenase (ubiquinone-8)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_G3PD5">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/G3PD5" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99880" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28751" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28752" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28753" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28754" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b2242" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2243" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2241" />
-            </fbc:and>
-            <fbc:geneProductRef fbc:geneProduct="G_b3426" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glyc3p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_q8_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dhap_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_q8h2_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_acgam_e" metaid="R_EX_acgam_e" name="N-Acetyl-D-glucosamine exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_acgam_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/acgam" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_acgam_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_cellb_e" metaid="R_EX_cellb_e" name="Cellobiose exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_cellb_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/cellb" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cellb_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_chol_e" metaid="R_EX_chol_e" name="Choline exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_chol_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/chol" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_chol_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LEUTAi" metaid="R_LEUTAi" name="Leucine transaminase (irreversible)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LEUTAi">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LEUTAi" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:BRANCHED-CHAINAMINOTRANSFERLEU-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.6.1.42" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.6.1.6" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.6.1.67" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01090" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96229" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18321" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18322" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18323" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18324" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b3770" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4054" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_4mop_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glu__L_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_akg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_leu__L_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_SHK3Dr" metaid="R_SHK3Dr" name="Shikimate dehydrogenase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_SHK3Dr">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/SHK3Dr" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:SHIKIMATE-5-DEHYDROGENASE-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.25" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.282" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02413" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104378" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17737" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17738" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17739" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17740" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b3281" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1692" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3dhsk_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_skm_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_G5SD" metaid="R_G5SD" name="Glutamate-5-semialdehyde dehydrogenase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_G5SD">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/G5SD" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLUTSEMIALDEHYDROG-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.2.1.41" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R03313" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99896" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19541" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19542" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19543" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19544" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0243" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glu5p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glu5sa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ALATA_L2" metaid="R_ALATA_L2" name="Alanine transaminase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ALATA_L2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ALATA_L2" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95699" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30023" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30024" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30025" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30026" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0870" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2551" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ala__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pydx5p_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pyam5p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pyr_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_MAN6PI" metaid="R_MAN6PI" name="Mannose-6-phosphate isomerase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MAN6PI">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MAN6PI" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:MANNPISOM-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/5.3.1.8" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01819" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101382" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1613" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_man6p_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_f6p_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_APRAUR" metaid="R_APRAUR" name="5-amino-6-(5-phosphoribosylamino)uracil reductase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_APRAUR">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/APRAUR" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RIBOFLAVINSYNREDUC-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.193" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R03458" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95898" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17845" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17846" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17847" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17848" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0414" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_5apru_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_5aprbu_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DB4PS" metaid="R_DB4PS" name="3,4-Dihydroxy-2-butanone-4-phosphate synthase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DB4PS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DB4PS" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.1.99.12" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R07281" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97178" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3041" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ru5p__D_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_db4p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_for_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_RBFK" metaid="R_RBFK" name="Riboflavin kinase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_RBFK">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/RBFK" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RIBOFLAVINKIN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.1.26" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00549" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103429" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14357" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14358" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14359" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14360" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0025" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ribflv_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fmn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ACP1_FMN" metaid="R_ACP1_FMN" name="Acid phosphatase (FMN)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ACP1_FMN">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ACP1_FMN" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-5187" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.102" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.2" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00548" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95393" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35587" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35588" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35589" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35590" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0446" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3812" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0844" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fmn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ribflv_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_RBFSb" metaid="R_RBFSb" name="Riboflavin synthase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_RBFSb">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/RBFSb" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RIBOFLAVIN-SYN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.5.1.9" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00066" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103430" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20772" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20773" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20774" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20775" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1662" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dmlz_c" stoichiometry="2" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_4r5au_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ribflv_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_EX_pi_e" metaid="R_EX_pi_e" name="Phosphate exchange" reversible="true"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_pi_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/pi" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pi_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_EX_h_e" metaid="R_EX_h_e" name="H+ exchange" reversible="true" sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_h_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/h" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DMATT" metaid="R_DMATT" name="Dimethylallyltranstransferase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DMATT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DMATT" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GPPSYN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.5.1.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01658" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97512" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22408" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22409" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22410" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22411" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0421" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dmpp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ipdp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_grdp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GRTT" metaid="R_GRTT" name="Geranyltranstransferase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GRTT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GRTT" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:FPPSYN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.5.1.10" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02003" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99634" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19361" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19362" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19363" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19364" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0421" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_grdp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ipdp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_frdp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_UPP3S" metaid="R_UPP3S" name="Uroporphyrinogen-III synthase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_UPP3S">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/UPP3S" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:UROGENIIISYN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.75" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R03165" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105139" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18965" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18966" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18967" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18968" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3804" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_hmbil_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_uppg3_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_UPPDC1" metaid="R_UPPDC1" name="Uroporphyrinogen decarboxylase (uroporphyrinogen III)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_UPPDC1">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/UPPDC1" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:UROGENDECARBOX-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.1.1.37" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R03197" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105140" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19865" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19866" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19867" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19868" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3997" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="4" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_uppg3_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_c" stoichiometry="4" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cpppg3_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_TMDPP" metaid="R_TMDPP" name="Thymidine phosphorylase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_TMDPP">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/TMDPP" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:THYM-PHOSPH-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.4.2.2" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.4.2.4" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01570" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104887" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16037" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16038" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16039" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16040" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4382" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_thymd_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2dr1p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_thym_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_ade_e" metaid="R_EX_ade_e" name="Adenine exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_ade_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ade" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ade_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_4abut_e" metaid="R_EX_4abut_e" name="4-Aminobutanoate exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_4abut_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/4abut" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_4abut_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_ac_e" metaid="R_EX_ac_e" name="Acetate exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_ac_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ac" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ac_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_akg_e" metaid="R_EX_akg_e" name="2-Oxoglutarate exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_akg_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/akg" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_akg_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_ala__L_e" metaid="R_EX_ala__L_e" name="L-Alanine exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_ala__L_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ala__L" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ala__L_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_arg__L_e" metaid="R_EX_arg__L_e" name="L-Arginine exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_arg__L_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/arg__L" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_arg__L_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_asp__L_e" metaid="R_EX_asp__L_e" name="L-Aspartate exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_asp__L_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/asp__L" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_asp__L_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_cytd_e" metaid="R_EX_cytd_e" name="Cytidine exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_cytd_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/cytd" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cytd_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_dcyt_e" metaid="R_EX_dcyt_e" name="Deoxycytidine exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_dcyt_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/dcyt" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dcyt_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_fum_e" metaid="R_EX_fum_e" name="Fumarate exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_fum_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/fum" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fum_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_glu__L_e" metaid="R_EX_glu__L_e" name="L-Glutamate exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_glu__L_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/glu__L" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glu__L_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_gua_e" metaid="R_EX_gua_e" name="Guanine exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_gua_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/gua" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gua_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_HCO3E" metaid="R_HCO3E" name="HCO3 equilibration reaction" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_HCO3E">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/HCO3E" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CARBODEHYDRAT-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-5224" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00132" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R10092" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100482" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10748" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10749" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10750" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10751" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0126" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0339" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_co2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_hco3_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_IMPC" metaid="R_IMPC" name="IMP cyclohydrolase" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_IMPC">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/IMPC" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:IMPCYCLOHYDROLASE-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.1.2.3" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.5.4.10" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01127" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100783" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18445" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18446" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18447" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18448" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4006" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_imp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fprica_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_IMPD" metaid="R_IMPD" name="IMP dehydrogenase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_IMPD">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/IMPD" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:IMP-DEHYDROG-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.205" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01130" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100830" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11708" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11709" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11710" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11711" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2508" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_imp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nad_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadh_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_xmp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ECOAH4" metaid="R_ECOAH4" name="3-hydroxyacyl-CoA dehydratase (3-hydroxydecanoyl-CoA)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ECOAH4">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ECOAH4" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-13616" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.17" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.74" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R04744" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97889" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/31191" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/31192" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/31193" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/31194" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2341" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3846" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3hdcoa_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dc2coa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GLUTRS" metaid="R_GLUTRS" name="Glutamyl-tRNA synthetase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLUTRS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLUTRS" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/6.1.1.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/6.1.1.17" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/6.1.1.24" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R05578" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100295" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2400" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glu__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_trnaglu_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_amp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glutrna_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_TMPPP" metaid="R_TMPPP" name="Thiamine-phosphate diphosphorylase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_TMPPP">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/TMPPP" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:THI-P-SYN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.5.1.3" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R03223" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104908" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22328" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22329" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22330" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22331" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3993" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2mahmp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_4mpetz_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_thmmp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_URIK1" metaid="R_URIK1" name="Uridine kinase  ATPUridine " reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_URIK1">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/URIK1" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:URIDINEKIN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.1.213" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.1.48" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00964" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105162" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16825" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16826" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16827" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16828" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2066" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_uri_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ump_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_URIK2" metaid="R_URIK2" name="Uridine kinase (GTP:Uridine)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_URIK2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/URIK2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:URKI-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.1.48" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00968" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105163" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27650" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27651" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27652" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27653" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2066" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gtp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_uri_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gdp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ump_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CYTDK1" metaid="R_CYTDK1" name="ATP:cytidine 5'-phosphotransferase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CYTDK1">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CYTDK1" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CYTIKIN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.1.213" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.1.48" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00513" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97041" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24674" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24675" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24676" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24677" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2066" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cytd_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cmp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CYTDK2" metaid="R_CYTDK2" name="Cytidine kinase (GTP)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CYTDK2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CYTDK2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CYTIDINEKIN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.1.213" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.1.48" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00517" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97042" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28162" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28163" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28164" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28165" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2066" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cytd_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gtp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cmp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gdp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_XPPT" metaid="R_XPPT" name="Xanthine phosphoribosyltransferase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_XPPT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/XPPT" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:XANPRIBOSYLTRAN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.4.2.22" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.4.2.8" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02142" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105243" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10800" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10801" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10802" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10803" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0238" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_prpp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_xan_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_xmp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_HXPRT" metaid="R_HXPRT" name="Hypoxanthine phosphoribosyltransferase (Hypoxanthine)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_HXPRT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/HXPRT" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:HYPOXANPRIBOSYLTRAN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.4.2.8" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01132" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100752" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17973" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17974" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17975" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17976" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0238" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0125" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_hxan_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_prpp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_imp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_NDPK5" metaid="R_NDPK5" name="Nucleoside-diphosphate kinase (ATP:dGDP)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NDPK5">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NDPK5" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DGDPKIN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.4.6" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01857" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96118" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27690" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27691" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27692" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27693" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0474" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2518" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dgdp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dgtp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_DHORTS" metaid="R_DHORTS" name="Dihydroorotase" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DHORTS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DHORTS" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DIHYDROOROT-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.5.2.3" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01993" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97428" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24296" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24297" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24298" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24299" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1062" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dhor__S_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cbasp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_OMPDC" metaid="R_OMPDC" name="Orotidine-5'-phosphate decarboxylase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_OMPDC">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/OMPDC" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:OROTPDECARB-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.1.1.23" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00965" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102190" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11596" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11597" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11598" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11599" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1281" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_orot5p_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ump_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CS" metaid="R_CS" name="Citrate synthase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CS" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CITSYN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-14905" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.3.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.3.16" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.3.3" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00351" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96920" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16845" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16846" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16847" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16848" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0720" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_accoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_oaa_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cit_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_coa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ICDHyr" metaid="R_ICDHyr" name="Isocitrate dehydrogenase (NADP)" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ICDHyr">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ICDHyr" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.42" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00267" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100781" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19629" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19630" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19631" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19632" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1136" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_icit_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_akg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadph_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ACALD" metaid="R_ACALD" name="Acetaldehyde dehydrogenase (acetylating)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ACALD">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ACALD" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ACETALD-DEHYDROG-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.2.1.10" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00228" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95210" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23288" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23289" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23290" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23291" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0351" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1241" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_acald_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_coa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nad_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_accoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadh_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ACS" metaid="R_ACS" name="Acetyl-CoA synthetase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ACS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ACS" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ACETATE--COA-LIGASE-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/6.2.1.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00235" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95413" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23176" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23177" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23178" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23179" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4069" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ac_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_coa_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_accoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_amp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PPA" metaid="R_PPA" name="Inorganic diphosphatase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PPA">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PPA" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:INORGPYROPHOSPHAT-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00004" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100808" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24576" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24577" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24578" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24579" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2502" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2744" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4226" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ppi_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="2" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PPCK" metaid="R_PPCK" name="Phosphoenolpyruvate carboxykinase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PPCK">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PPCK" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PEPCARBOXYKIN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.1.1.49" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00341" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103099" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18617" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18618" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18619" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18620" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3403" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_oaa_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pep_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ME1" metaid="R_ME1" name="Malic enzyme (NAD)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ME1">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ME1" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:1.1.1.39-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.38" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.39" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00214" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101446" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12653" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12654" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12655" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12656" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1479" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mal__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nad_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadh_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pyr_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ALAR" metaid="R_ALAR" name="Alanine racemase" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ALAR">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ALAR" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ALARACECAT-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/5.1.1.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00401" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95693" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20249" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20250" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20251" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20252" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1190" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4053" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ala__L_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ala__D_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ALATA_L" metaid="R_ALATA_L" name="L-alanine transaminase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ALATA_L">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ALATA_L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ALANINE-AMINOTRANSFERASE-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-13698" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.6.1.2" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00258" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95698" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19453" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19454" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19455" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19456" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2290" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2379" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_akg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ala__L_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glu__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pyr_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_XYLK" metaid="R_XYLK" name="Xylulokinase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_XYLK">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/XYLK" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:XYLULOKIN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.1.17" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01639" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105255" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10964" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10965" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10966" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10967" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0063" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3564" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_xylu__D_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_xu5p__D_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_RBK" metaid="R_RBK" name="Ribokinase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_RBK">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/RBK" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.1.15" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103431" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3752" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_rib__D_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_r5p_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GLYK" metaid="R_GLYK" name="Glycerol kinase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLYK">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLYK" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLYCEROL-KIN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.1.30" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00847" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100348" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21644" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21645" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21646" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21647" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3926" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glyc_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glyc3p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_PPM" metaid="R_PPM" name="Phosphopentomutase" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PPM">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PPM" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-14456" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/5.4.2.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/5.4.2.2" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/5.4.2.7" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103115" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4383" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_r1p_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_r5p_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ASPTA" metaid="R_ASPTA" name="Aspartate transaminase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ASPTA">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ASPTA" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ASPAMINOTRANS-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-13697" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.6.1.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00355" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96079" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21824" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21825" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21826" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21827" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0928" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4054" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_akg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_asp__L_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glu__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_oaa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FBP" metaid="R_FBP" name="Fructose-bisphosphatase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FBP">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FBP" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.11" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99465" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11064" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11065" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11066" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11067" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2930" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4232" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3925" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3697" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fdp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_f6p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GLGC" metaid="R_GLGC" name="Glucose-1-phosphate adenylyltransferase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLGC">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLGC" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLUC1PADENYLTRANS-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.7.27" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00948" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100243" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12120" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12121" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12122" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12123" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3430" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_g1p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adpglc_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PYK" metaid="R_PYK" name="Pyruvate kinase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PYK">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PYK" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PEPDEPHOS-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.1.40" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00200" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103371" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18157" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18158" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18159" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18160" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1854" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1676" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pep_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pyr_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_A5PISO" metaid="R_A5PISO" name="Arabinose-5-phosphate isomerase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_A5PISO">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/A5PISO" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DARAB5PISOM-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/5.3.1.13" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01530" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95132" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23104" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23105" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23106" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23107" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b3197" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2708" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ru5p__D_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ara5p_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_met__L_e" metaid="R_EX_met__L_e" name="L-Methionine exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_met__L_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/met__L" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_met__L_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_metsox_S__L_e" metaid="R_EX_metsox_S__L_e" name="L-Methionine S-oxide exchange"
-      reversible="false" sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_metsox_S__L_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/metsox_S__L" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_metsox_S__L_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_IPPMIb" metaid="R_IPPMIb" name="2-isopropylmalate hydratase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_IPPMIb">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/IPPMIb" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:3-ISOPROPYLMALISOM-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.33" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R03968" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100826" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16293" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16294" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16295" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16296" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b0071" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0072" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2ippm_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3c3hmp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ACHBS" metaid="R_ACHBS" name="2-aceto-2-hydroxybutanoate synthase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ACHBS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ACHBS" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ACETOOHBUTSYN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.2.1.6" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R08648" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95260" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27654" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27655" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27656" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27657" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b3670" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3671" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b0077" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0078" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2obut_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pyr_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2ahbut_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ACLS" metaid="R_ACLS" name="Acetolactate synthase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ACLS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ACLS" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ACETOLACTSYN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.2.1.6" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00226" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95271" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25249" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25250" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25251" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25252" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b0077" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0078" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b3670" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3671" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pyr_c" stoichiometry="2" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_alac__S_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_PSCVT" metaid="R_PSCVT" name="3-phosphoshikimate 1-carboxyvinyltransferase"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PSCVT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PSCVT" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:2.5.1.19-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.5.1.19" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R03460" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103226" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21256" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21257" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21258" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21259" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0908" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pep_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_skm5p_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3psme_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ANS" metaid="R_ANS" name="Anthranilate synthase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ANS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ANS" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ANTHRANSYN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.1.3.27" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00986" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95843" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21732" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21733" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21734" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21735" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b1263" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1264" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_chor_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gln__L_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_anth_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glu__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pyr_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ANPRT" metaid="R_ANPRT" name="Anthranilate phosphoribosyltransferase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ANPRT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ANPRT" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PRTRANS-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.4.2.18" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01073" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95842" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11768" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11769" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11770" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11771" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1263" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_anth_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_prpp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pran_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CHORM" metaid="R_CHORM" name="Chorismate mutase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CHORM">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CHORM" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CHORISMATEMUT-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/5.4.99.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01715" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96708" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13897" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13898" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13899" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13900" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2599" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2600" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_chor_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pphn_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CHORS" metaid="R_CHORS" name="Chorismate synthase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CHORS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CHORS" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CHORISMATE-SYNTHASE-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.3.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01714" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96709" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21020" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21021" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21022" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21023" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2329" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3psme_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_chor_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_IGPS" metaid="R_IGPS" name="Indole-3-glycerol-phosphate synthase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_IGPS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/IGPS" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:IGPSYN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.1.1.48" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R03508" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100814" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23476" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23477" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23478" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23479" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1262" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2cpr5p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3ig3p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_crn_e" metaid="R_EX_crn_e" name="L-Carnitine exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_crn_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/crn" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_crn_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_EX_fe3_e" metaid="R_EX_fe3_e" name="Fe3+ exchange" reversible="true"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_fe3_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/fe3" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fe3_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_glcn_e" metaid="R_EX_glcn_e" name="D-Gluconate exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_glcn_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/glcn" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glcn_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_gln__L_e" metaid="R_EX_gln__L_e" name="L-Glutamine exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_gln__L_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/gln__L" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gln__L_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_glyc_e" metaid="R_EX_glyc_e" name="Glycerol exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_glyc_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/glyc" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glyc_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_man_e" metaid="R_EX_man_e" name="D-Mannose exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_man_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/man" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_man_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_EX_mn2_e" metaid="R_EX_mn2_e" name="Mn2+ exchange" reversible="true"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_mn2_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/mn2" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mn2_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_rib__D_e" metaid="R_EX_rib__D_e" name="D-Ribose exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_rib__D_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/rib__D" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_rib__D_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_sbt__D_e" metaid="R_EX_sbt__D_e" name="D-Sorbitol exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_sbt__D_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/sbt__D" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_sbt__D_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ECOAH6" metaid="R_ECOAH6"
-      name="3-hydroxyacyl-CoA dehydratase (3-hydroxytetradecanoyl-CoA)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ECOAH6">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ECOAH6" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-14273" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.17" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.74" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R04740" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97891" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/31171" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/31172" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/31173" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/31174" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2341" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3846" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3htdcoa_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_td2coa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ENO" metaid="R_ENO" name="Enolase" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ENO">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ENO" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:2PGADEHYDRAT-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.11" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00658" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97932" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10164" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10165" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10166" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10167" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2779" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2pg_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pep_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_FBA" metaid="R_FBA" name="Fructose-bisphosphate aldolase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FBA">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FBA" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.1.2.13" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01068" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99459" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14729" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14730" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14731" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14732" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2925" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2097" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fdp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dhap_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g3p_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MGSA" metaid="R_MGSA" name="Methylglyoxal synthase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MGSA">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MGSA" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:METHGLYSYN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.3.3" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01016" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101551" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17937" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17938" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17939" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17940" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0963" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dhap_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_mthgxl_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PPS" metaid="R_PPS" name="Phosphoenolpyruvate synthase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PPS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PPS" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PEPSYNTH-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.9.2" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00199" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103140" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11364" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11365" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11366" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11367" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1702" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pyr_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_amp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pep_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_PGI" metaid="R_PGI" name="Glucose-6-phosphate isomerase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PGI">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PGI" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PGLUCISOM-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/5.3.1.9" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102535" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4025" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_g6p_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_f6p_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_PGK" metaid="R_PGK" name="Phosphoglycerate kinase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PGK">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PGK" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PHOSGLYPHOS-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.2.3" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01512" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102538" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14801" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14802" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14803" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14804" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2926" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3pg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_13dpg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EDA" metaid="R_EDA" name="2-dehydro-3-deoxy-phosphogluconate aldolase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EDA">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/EDA" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:KDPGALDOL-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.1.2.14" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.1.2.55" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R05605" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97897" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17089" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17090" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17091" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17092" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1850" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2ddg6p_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g3p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pyr_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PGL" metaid="R_PGL" name="6-phosphogluconolactonase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PGL">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PGL" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:6PGLUCONOLACT-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.1.31" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02035" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102539" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12556" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12557" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12558" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12559" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0767" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_6pgl_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_6pgc_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_RPE" metaid="R_RPE" name="Ribulose 5-phosphate 3-epimerase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_RPE">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/RPE" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RIBULP3EPIM-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/5.1.3.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01529" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104083" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13677" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13678" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13679" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13680" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3386" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ru5p__D_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_xu5p__D_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_TALA" metaid="R_TALA" name="Transaldolase" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_TALA">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/TALA" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANSALDOL-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.2.1.2" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01827" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104715" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17053" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17054" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17055" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17056" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0008" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2464" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_g3p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_s7p_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_e4p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_f6p_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_TKT1" metaid="R_TKT1" name="Transketolase" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_TKT1">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/TKT1" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.2.1.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104868" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2935" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2465" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_r5p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_xu5p__D_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g3p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_s7p_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_G6PDA" metaid="R_G6PDA" name="Glucosamine-6-phosphate deaminase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_G6PDA">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/G6PDA" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.5.99.6" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00765" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99905" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0678" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gam6p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_f6p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nh4_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ALCD2x" metaid="R_ALCD2x" name="Alcohol dehydrogenase (ethanol)" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ALCD2x">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ALCD2x" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ALCOHOL-DEHYDROG-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.71" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00754" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95725" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25290" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25291" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25292" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25293" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1478" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_etoh_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nad_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_acald_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadh_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ALDD2y" metaid="R_ALDD2y" name="Aldehyde dehydrogenase (acetaldehyde, NADP)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ALDD2y">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ALDD2y" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-3962" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.2.1.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.2.1.4" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.2.1.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00711" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95750" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25298" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25299" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25300" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25301" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0493" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3011" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3588" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3003" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4269" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_acald_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ac_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadph_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_RMI" metaid="R_RMI" name="L-rhamnose isomerase" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_RMI">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/RMI" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/5.3.1.14" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02437" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104038" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23160" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23161" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23162" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23163" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3903" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_rmn_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_rml_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_ura_e" metaid="R_EX_ura_e" name="Uracil exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_ura_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ura" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ura_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_val__L_e" metaid="R_EX_val__L_e" name="L-Valine exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_val__L_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/val__L" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_val__L_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_xan_e" metaid="R_EX_xan_e" name="Xanthine exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_xan_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/xan" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_xan_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FMNAT" metaid="R_FMNAT" name="FMN adenylyltransferase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FMNAT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FMNAT" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:FADSYN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.7.2" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00161" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95501" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17237" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17238" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17239" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17240" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0025" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fmn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fad_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NADDP" metaid="R_NADDP" name="NAD diphosphatase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NADDP">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NADDP" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:NADPYROPHOSPHAT-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.22" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.9" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00103" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101861" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11800" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11801" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11802" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11803" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b3996" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2411" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nad_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_amp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nmn_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NMNAT" metaid="R_NMNAT" name="Nicotinamide-nucleotide adenylyltransferase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NMNAT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NMNAT" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:2.7.7.1-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.7.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.7.18" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00137" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95841" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21360" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21361" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21362" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21363" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b4390" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0639" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nmn_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nad_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_HMPK1" metaid="R_HMPK1" name="Hydroxymethylpyrimidine kinase (ATP)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_HMPK1">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/HMPK1" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:OHMETPYRKIN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.1.49" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R03471" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100664" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23096" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23097" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23098" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23099" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2103" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2418" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_4ahmmp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_4ampm_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_NDPK6" metaid="R_NDPK6" name="Nucleoside-diphosphate kinase (ATP:dUDP)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NDPK6">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NDPK6" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DUDPKIN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.4.6" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02331" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101938" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28582" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28583" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28584" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28585" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0474" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2518" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dudp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dutp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_NDPK8" metaid="R_NDPK8" name="Nucleoside-diphosphate kinase (ATP:dADP)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NDPK8">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NDPK8" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DADPKIN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.4.6" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01137" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101940" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27674" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27675" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27676" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27677" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0474" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2518" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dadp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_datp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_PYNP2r" metaid="R_PYNP2r" name="Pyrimidine-nucleoside phosphorylase (uracil)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PYNP2r">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PYNP2r" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:URPHOS-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.4.2.2" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.4.2.3" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01876" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103377" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24388" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24389" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24390" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24391" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3831" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_uri_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_r1p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ura_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_DURIPP" metaid="R_DURIPP" name="Deoxyuridine phosphorylase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DURIPP">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DURIPP" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:URA-PHOSPH-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.4.2.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.4.2.2" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.4.2.3" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.4.2.4" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02484" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97818" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22824" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22825" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22826" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22827" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b4382" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4384" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_duri_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pi_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2dr1p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ura_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PTRCTA" metaid="R_PTRCTA" name="Putrescine Transaminase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PTRCTA">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PTRCTA" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PUTTRANSAM-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.6.1.29" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.6.1.82" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01155" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103337" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23816" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23817" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23818" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23819" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3073" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_akg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ptrc_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_4abutn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glu__L_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CYSDS" metaid="R_CYSDS" name="Cysteine Desulfhydrase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CYSDS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CYSDS" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:LCYSDESULF-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.4.1.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.4.1.28" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.4.1.8" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00782" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96994" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24931" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24932" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24933" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24934" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b3008" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3708" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cys__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2s_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nh4_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pyr_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_TRPAS2" metaid="R_TRPAS2" name="Tryptophanase (L-tryptophan)" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_TRPAS2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/TRPAS2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRYPTOPHAN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.1.99.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00673" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104941" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19553" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19554" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19555" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19556" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3708" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_trp__L_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_indole_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nh4_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pyr_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NDP3" metaid="R_NDP3" name="Nucleoside diphosphatase  GDP " reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NDP3">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NDP3" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GUANOSINE-DIPHOSPHATASE-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.42" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.6" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00328" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101928" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22156" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22157" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22158" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22159" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1134" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3614" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gdp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gmp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CDPPH" metaid="R_CDPPH" name="CDP phosphohydrolase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CDPPH">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CDPPH" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-12198" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.6" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00514" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96559" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3614" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cdp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cmp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NDP7" metaid="R_NDP7" name="Nucleoside diphosphatase  UDP " reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NDP7">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NDP7" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-12197" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.6" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00155" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101931" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3614" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_udp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ump_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_EX_co2_e" metaid="R_EX_co2_e" name="CO2 exchange" reversible="true"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_co2_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/co2" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_co2_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PMDPHT" metaid="R_PMDPHT" name="Pyrimidine phosphatase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PMDPHT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PMDPHT" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RIBOPHOSPHAT-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.104" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R07280" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96145" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25197" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25198" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25199" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25200" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0844" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3812" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_5aprbu_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_4r5au_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ILETA" metaid="R_ILETA" name="Isoleucine transaminase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ILETA">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ILETA" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:BRANCHED-CHAINAMINOTRANSFERILEU-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.6.1.42" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02199" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96228" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24801" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24802" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24803" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24804" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3770" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_akg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ile__L_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3mop_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glu__L_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_VALTA" metaid="R_VALTA" name="Valine transaminase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_VALTA">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/VALTA" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:BRANCHED-CHAINAMINOTRANSFERVAL-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.6.1.42" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.6.1.6" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01214" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96230" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24813" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24814" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24815" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24816" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3770" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_akg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_val__L_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3mob_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glu__L_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ORPT" metaid="R_ORPT" name="Orotate phosphoribosyltransferase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ORPT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ORPT" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:OROPRIBTRANS-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.4.2.10" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01870" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102231" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10380" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10381" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10382" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10383" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3642" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_orot5p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ppi_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_orot_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_prpp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_RBFSa" metaid="R_RBFSa" name="Riboflavin synthase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_RBFSa">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/RBFSa" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.5.1.78" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.5.1.9" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R04457" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97501" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0415" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_4r5au_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_db4p_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dmlz_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DHAD2" metaid="R_DHAD2"
-      name="Dihydroxy-acid dehydratase (2,3-dihydroxy-3-methylpentanoate)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DHAD2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DHAD2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DIHYDROXYMETVALDEHYDRAT-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.9" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R05070" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97359" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27694" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27695" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27696" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27697" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3771" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_23dhmp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3mop_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_G1PP" metaid="R_G1PP" name="Glucose-1-phosphatase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_G1PP">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/G1PP" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLUCOSE-1-PHOSPHAT-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-17330" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.10" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00304" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99844" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19933" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19934" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19935" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19936" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b3885" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2293" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3697" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_g1p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glc__D_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PFL" metaid="R_PFL" name="Pyruvate formate lyase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PFL">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PFL" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PYRUVFORMLY-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.54" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00212" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102514" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11844" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11845" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11846" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11847" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b3951" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3952" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b0902" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0903" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b0902" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3114" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b0903" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0902" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2579" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_coa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pyr_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_accoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_for_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FRD2" metaid="R_FRD2" name="Fumarate reductase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FRD2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FRD2" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99637" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29215" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29216" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29217" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29218" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b4153" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4152" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4151" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4154" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fum_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mql8_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_mqn8_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_succ_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FRD3" metaid="R_FRD3" name="Fumarate reductase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FRD3">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FRD3" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.3.99.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99639" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b4153" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4152" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4151" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4154" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2dmmql8_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fum_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2dmmq8_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_succ_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_POX" metaid="R_POX" name="Pyruvate oxidase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_POX">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/POX" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103067" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29167" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29168" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29169" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29170" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0871" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pyr_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_q8_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ac_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_q8h2_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_PTAr" metaid="R_PTAr" name="Phosphotransacetylase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PTAr">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PTAr" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PHOSACETYLTRANS-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.8" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00230" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103319" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19521" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19522" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19523" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19524" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2297" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2458" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_accoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pi_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_actp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_coa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ACKr" metaid="R_ACKr" name="Acetate kinase" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ACKr">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ACKr" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ACETATEKIN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.2.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.2.15" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00315" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95269" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11352" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11353" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11354" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11355" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1849" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2296" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3115" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ac_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_actp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_hxan_e" metaid="R_EX_hxan_e" name="Hypoxanthine exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_hxan_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/hxan" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_hxan_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_ile__L_e" metaid="R_EX_ile__L_e" name="L-Isoleucine exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_ile__L_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ile__L" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ile__L_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_lac__L_e" metaid="R_EX_lac__L_e" name="L-Lactate exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_lac__L_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/lac__L" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_lac__L_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_leu__L_e" metaid="R_EX_leu__L_e" name="L-Leucine exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_leu__L_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/leu__L" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_leu__L_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_no3_e" metaid="R_EX_no3_e" name="Nitrate exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_no3_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/no3" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_no3_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_orn_e" metaid="R_EX_orn_e" name="Ornithine exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_orn_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/orn" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_orn_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_pro__L_e" metaid="R_EX_pro__L_e" name="L-Proline exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_pro__L_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/pro__L" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pro__L_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_pyr_e" metaid="R_EX_pyr_e" name="Pyruvate exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_pyr_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/pyr" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pyr_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_succ_e" metaid="R_EX_succ_e" name="Succinate exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_succ_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/succ" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_succ_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_thymd_e" metaid="R_EX_thymd_e" name="Thymidine exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_thymd_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/thymd" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_thymd_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_tyr__L_e" metaid="R_EX_tyr__L_e" name="L-Tyrosine exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_tyr__L_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/tyr__L" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_tyr__L_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MOAT" metaid="R_MOAT" name="3-deoxy-D-manno-octulosonic acid transferase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MOAT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MOAT" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:KDOTRANS-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.4.99.12" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R04658" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101683" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28066" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28067" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28068" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28069" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3633" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ckdo_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_lipidA_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cmp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_kdolipid4_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_UDCPDPS" metaid="R_UDCPDPS" name="Undecaprenyl diphosphate synthase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_UDCPDPS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/UDCPDPS" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-9138" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.5.1.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.5.1.31" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.5.1.M1" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105043" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0174" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_frdp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ipdp_c" stoichiometry="8" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="8" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_udcpdp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_USHD" metaid="R_USHD" name="UDP-sugar hydrolase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_USHD">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/USHD" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:LIPIDXSYNTHESIS-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.54" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R04549" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105170" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25213" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25214" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25215" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25216" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0524" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_u23ga_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_lipidX_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ump_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LPADSS" metaid="R_LPADSS" name="Lipid A disaccaride synthase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LPADSS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LPADSS" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:LIPIDADISACCHARIDESYNTH-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.4.1.182" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R04606" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101119" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22668" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22669" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22670" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22671" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0182" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_lipidX_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_u23ga_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_lipidAds_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_udp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_TDSK" metaid="R_TDSK" name="Tetraacyldisaccharide 4'kinase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_TDSK">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/TDSK" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TETRAACYLDISACC4KIN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.1.130" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R04657" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104762" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20700" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20701" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20702" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20703" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0915" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_lipidAds_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_lipidA_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_btn_e" metaid="R_EX_btn_e" name="Biotin exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_btn_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/btn" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_btn_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_ptrc_e" metaid="R_EX_ptrc_e" name="Putrescine exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_ptrc_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ptrc" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ptrc_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_spmd_e" metaid="R_EX_spmd_e" name="Spermidine exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_spmd_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/spmd" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_spmd_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_thym_e" metaid="R_EX_thym_e" name="Thymine exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_thym_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/thym" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_thym_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_xtsn_e" metaid="R_EX_xtsn_e" name="Xanthosine exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_xtsn_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/xtsn" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_xtsn_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NTPP1" metaid="R_NTPP1" name="Nucleoside triphosphate pyrophosphorylase (dgtp)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NTPP1">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NTPP1" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-385" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.19" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.9" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01855" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102049" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28362" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28363" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28364" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28365" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0099" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2781" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dgtp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dgmp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NTPP2" metaid="R_NTPP2" name="Nucleoside triphosphate pyrophosphorylase (gtp)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NTPP2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NTPP2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-14140" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.8" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.9" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00426" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102052" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29391" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29392" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29393" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29394" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0099" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2781" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gtp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gmp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NTPTP1" metaid="R_NTPTP1" name="Nucleoside triphosphate tripolyhydrolase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NTPTP1">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NTPTP1" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DGTPTRIPHYDRO-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.5.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01856" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102057" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15193" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15194" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15195" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15196" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0160" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dgtp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dgsn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NTPTP2" metaid="R_NTPTP2" name="Nucleoside triphosphate tripolyhydrolase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NTPTP2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NTPTP2" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102058" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30559" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30560" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30561" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30562" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0160" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gtp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gsn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_IPMD" metaid="R_IPMD" name="3-isopropylmalate dehydrogenase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_IPMD">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/IPMD" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:3-ISOPROPYLMALDEHYDROG-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.85" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R04426" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100878" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10892" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10893" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10894" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10895" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0073" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1800" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3c2hmp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nad_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3c4mop_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadh_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_AIRC3" metaid="R_AIRC3" name="Phosphoribosylaminoimidazole carboxylase (mutase rxn)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_AIRC3">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/AIRC3" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-743" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/5.4.99.18" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R07405" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95645" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13193" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13194" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13195" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13196" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0523" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_5aizc_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_5caiz_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ADSL2r" metaid="R_ADSL2r" name="Adenylosuccinate lyase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ADSL2r">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ADSL2r" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:AICARSYN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.3.2.2" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95494" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1131" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_25aics_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_aicar_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fum_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_EX_fe2_e" metaid="R_EX_fe2_e" name="Fe2+ exchange" reversible="true"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_fe2_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/fe2" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fe2_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_PUNP5" metaid="R_PUNP5" name="Purine-nucleoside phosphorylase (Inosine)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PUNP5">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PUNP5" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:INOPHOSPHOR-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.4.2.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.4.2.15" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01863" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103347" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27646" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27647" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27648" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27649" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2407" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4384" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ins_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pi_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_hxan_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_r1p_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_PUNP6" metaid="R_PUNP6" name="Purine-nucleoside phosphorylase (Deoxyinosine)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PUNP6">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PUNP6" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DEOXYINOPHOSPHOR-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.4.2.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.4.2.4" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02748" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103348" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27750" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27751" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27752" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27753" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b4384" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2407" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_din_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pi_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2dr1p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_hxan_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_PUNP7" metaid="R_PUNP7" name="Purine-nucleoside phosphorylase (Xanthosine)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PUNP7">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PUNP7" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:XANTHOSINEPHOSPHORY-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.4.2.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.4.2.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02297" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103349" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27638" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27639" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27640" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27641" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2407" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_xtsn_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_r1p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_xan_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_RNDR1" metaid="R_RNDR1" name="Ribonucleoside-diphosphate reductase (ADP)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_RNDR1">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/RNDR1" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ADPREDUCT-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.17.4.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02017" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104060" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b2582" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2235" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2234" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b3781" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2235" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2234" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_trdrd_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dadp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_trdox_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_RNDR3" metaid="R_RNDR3" name="Ribonucleoside-diphosphate reductase (CDP)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_RNDR3">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/RNDR3" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CDPREDUCT-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.17.4.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02024" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104064" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b3781" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2235" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2234" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b2582" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2235" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2234" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cdp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_trdrd_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dcdp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_trdox_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_RNDR4" metaid="R_RNDR4" name="Ribonucleoside-diphosphate reductase (UDP)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_RNDR4">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/RNDR4" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:UDPREDUCT-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.17.4.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02018" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104066" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b3781" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2235" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2234" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b2235" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2234" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2582" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_trdrd_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_udp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dudp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_trdox_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_TMDS" metaid="R_TMDS" name="Thymidylate synthase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_TMDS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/TMDS" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.1.1.45" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02101" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104889" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12104" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12105" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12106" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12107" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2827" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dump_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mlthf_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dhf_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dtmp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_TMDK1" metaid="R_TMDK1" name="Thymidine kinase (ATP:thymidine)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_TMDK1">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/TMDK1" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:THYKI-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.1.145" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.1.21" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01567" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104885" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19129" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19130" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19131" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19132" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1238" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_thymd_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dtmp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PPCDC" metaid="R_PPCDC" name="Phosphopantothenoylcysteine decarboxylase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PPCDC">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PPCDC" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:P-PANTOCYSDECARB-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.1.1.36" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R03269" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103098" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16793" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16794" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16795" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16796" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3639" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_4ppcys_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pan4p_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FTHFD" metaid="R_FTHFD" name="Formyltetrahydrofolate deformylase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FTHFD">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FTHFD" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.5.1.10" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00944" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99669" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19833" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19834" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19835" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19836" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1232" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_10fthf_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_for_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_thf_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="R_EX_glc__D_e_lower_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_glc__D_e" metaid="R_EX_glc__D_e" name="D-Glucose exchange" reversible="true"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_glc__D_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/glc__D" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glc__D_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EDD" metaid="R_EDD" name="6-phosphogluconate dehydratase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EDD">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/EDD" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PGLUCONDEHYDRAT-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.12" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02036" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97898" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17277" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17278" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17279" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17280" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1851" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_6pgc_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2ddg6p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DHQTi" metaid="R_DHQTi" name="3-dehydroquinate dehydratase, irreversible"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DHQTi">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DHQTi" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:3-DEHYDROQUINATE-DEHYDRATASE-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.10" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R03084" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97449" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21096" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21097" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21098" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21099" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1693" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3dhq_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3dhsk_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_PUNP1" metaid="R_PUNP1" name="Purine-nucleoside phosphorylase (Adenosine)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PUNP1">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PUNP1" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ADENPHOSPHOR-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.4.2.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01561" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103343" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27642" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27643" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27644" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27645" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4384" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_adn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pi_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ade_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_r1p_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_PUNP2" metaid="R_PUNP2" name="Purine-nucleoside phosphorylase (Deoxyadenosine)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PUNP2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PUNP2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DEOXYADENPHOSPHOR-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.4.2.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02557" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103344" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27742" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27743" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27744" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27745" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4384" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dad_2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pi_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2dr1p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ade_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_PUNP3" metaid="R_PUNP3" name="Purine-nucleoside phosphorylase (Guanosine)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PUNP3">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PUNP3" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-5199" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.4.2.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.4.2.15" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02147" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103345" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13233" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13234" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13235" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13236" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2407" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4384" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gsn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pi_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gua_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_r1p_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_LYSAM" metaid="R_LYSAM" name="Lysine 2,3-aminomutase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LYSAM">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LYSAM" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:LYSINE-23-AMINOMUTASE-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/5.4.3.2" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00461" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101254" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19177" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19178" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19179" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19180" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4146" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_lys__L_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_36dahx_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DHAD1" metaid="R_DHAD1" name="Dihydroxy-acid dehydratase (2,3-dihydroxy-3-methylbutanoate)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DHAD1">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DHAD1" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DIHYDROXYISOVALDEHYDRAT-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.9" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R04441" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97358" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24809" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24810" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24811" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24812" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3771" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_23dhmb_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3mob_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_IPPMIa" metaid="R_IPPMIa" name="3-isopropylmalate dehydratase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_IPPMIa">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/IPPMIa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-8991" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.33" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R04001" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100827" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10676" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10677" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10678" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10679" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b0071" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0072" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3c2hmp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2ippm_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_alltn_e" metaid="R_EX_alltn_e" name="Allantoin exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_alltn_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/alltn" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_alltn_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_G3PD7" metaid="R_G3PD7" name="Glycerol-3-phosphate dehydrogenase (demethylmenaquinone-8)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_G3PD7">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/G3PD7" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.99.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99882" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b2242" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2243" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2241" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2dmmq8_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glyc3p_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2dmmql8_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dhap_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NADH9" metaid="R_NADH9" name="NADH dehydrogenase (demethylmenaquinone-8 &amp; 0 protons)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NADH9">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NADH9" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101876" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30507" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30508" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30509" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30510" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0046" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1109" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1004" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3713" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2dmmq8_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadh_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2dmmql8_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nad_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NADH10" metaid="R_NADH10" name="NADH dehydrogenase (menaquinone-8 &amp; 0 protons)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NADH10">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NADH10" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101863" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29243" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29244" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29245" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29246" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0046" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1109" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3713" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1004" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mqn8_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadh_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_mql8_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nad_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_MDH" metaid="R_MDH" name="Malate dehydrogenase" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MDH">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MDH" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:MALATE-DEH-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.299" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.37" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00342" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101439" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21432" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21433" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21434" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21435" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3236" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mal__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nad_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadh_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_oaa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_FUM" metaid="R_FUM" name="Fumarase" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FUM">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FUM" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:FUMHYDR-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.2" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01082" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99705" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12460" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12461" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12462" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12463" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b4122" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1612" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1611" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fum_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_mal__L_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PYDXNK" metaid="R_PYDXNK" name="Pyridoxine kinase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PYDXNK">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PYDXNK" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PNKIN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.1.35" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01909" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103362" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25108" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25109" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25110" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25111" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2418" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pydxn_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pdx5p_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PYAM5PO" metaid="R_PYAM5PO" name="Pyridoxamine 5'-phosphate oxidase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PYAM5PO">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PYAM5PO" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PMPOXI-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.4.3.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00277" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103355" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15817" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15818" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15819" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15820" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1638" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_o2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pyam5p_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nh4_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pydx5p_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_OHPBAT" metaid="R_OHPBAT"
-      name="O-Phospho-4-hydroxy-L-threonine:2-oxoglutarate aminotransferase" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_OHPBAT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/OHPBAT" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PSERTRANSAMPYR-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.6.1.52" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R05085" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102169" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16573" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16574" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16575" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16576" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0907" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glu__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ohpb_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_akg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_phthr_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_dgsn_e" metaid="R_EX_dgsn_e" name="Deoxyguanosine exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_dgsn_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/dgsn" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dgsn_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_arab__L_e" metaid="R_EX_arab__L_e" name="L-Arabinose exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_arab__L_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/arab__L" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_arab__L_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_fru_e" metaid="R_EX_fru_e" name="D-Fructose exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_fru_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/fru" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fru_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_gal_e" metaid="R_EX_gal_e" name="D-Galactose exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_gal_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/gal" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gal_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_xyl__D_e" metaid="R_EX_xyl__D_e" name="D-Xylose exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_xyl__D_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/xyl__D" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_xyl__D_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_duri_e" metaid="R_EX_duri_e" name="Deoxyuridine exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_duri_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/duri" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_duri_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_for_e" metaid="R_EX_for_e" name="Formate exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_for_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/for" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_for_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_gly_e" metaid="R_EX_gly_e" name="Glycine exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_gly_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/gly" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gly_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_h2_e" metaid="R_EX_h2_e" name="H2 exchange" reversible="false" sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_h2_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/h2" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_lys__L_e" metaid="R_EX_lys__L_e" name="L-Lysine exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_lys__L_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/lys__L" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_lys__L_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_ser__L_e" metaid="R_EX_ser__L_e" name="L-Serine exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_ser__L_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ser__L" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ser__L_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_thm_e" metaid="R_EX_thm_e" name="Thiamin exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_thm_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/thm" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_thm_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_trp__L_e" metaid="R_EX_trp__L_e" name="L-Tryptophan exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_trp__L_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/trp__L" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_trp__L_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GLUTRR" metaid="R_GLUTRR" name="Glutamyl-tRNA reductase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLUTRR">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLUTRR" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.2.1.70" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R04109" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100294" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1210" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glutrna_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glu1sa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_trnaglu_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GLCS1" metaid="R_GLCS1" name="Glycogen synthase (ADPGlc)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLCS1">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLCS1" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.4.1.21" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100223" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3429" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_adpglc_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glycogen_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GLCP" metaid="R_GLCP" name="Glycogen phosphorylase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLCP">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLCP" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100214" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b3428" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3417" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glycogen_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pi_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g1p_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_din_e" metaid="R_EX_din_e" name="Deoxyinosine exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_din_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/din" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_din_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_fmn_e" metaid="R_EX_fmn_e" name="FMN exchange" reversible="false" sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_fmn_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/fmn" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fmn_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_gthox_e" metaid="R_EX_gthox_e" name="Oxidized glutathione exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_gthox_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/gthox" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gthox_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_HEMEOS" metaid="R_HEMEOS" name="Heme O synthase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_HEMEOS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/HEMEOS" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.5.1.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R07411" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100596" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28070" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28071" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28072" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28073" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0428" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_frdp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pheme_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_hemeO_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ADMDC" metaid="R_ADMDC" name="Adenosylmethionine decarboxylase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ADMDC">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ADMDC" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:SAMDECARB-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.1.1.50" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00178" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95455" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15981" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15982" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15983" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15984" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0120" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_amet_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ametam_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_AGMT" metaid="R_AGMT" name="Agmatinase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_AGMT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/AGMT" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:AGMATIN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.5.3.11" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01157" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95554" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13929" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13930" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13931" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13932" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2937" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_agm_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ptrc_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_urea_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ARGDC" metaid="R_ARGDC" name="Arginine decarboxylase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ARGDC">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ARGDC" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ARGDECARBOX-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.1.1.19" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00566" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95940" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17641" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17642" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17643" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17644" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4117" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_arg__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_agm_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ARGSS" metaid="R_ARGSS" name="Argininosuccinate synthase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ARGSS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ARGSS" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ARGSUCCINSYN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/6.3.4.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01954" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95949" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10932" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10933" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10934" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10935" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3172" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_asp__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_citr__L_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_amp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_argsuc_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_AGPR" metaid="R_AGPR" name="N-acetyl-g-glutamyl-phosphate reductase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_AGPR">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/AGPR" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:N-ACETYLGLUTPREDUCT-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.2.1.38" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R03443" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95530" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21588" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21589" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21590" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21591" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3958" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_acg5sa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pi_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_acg5p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadph_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_SPMS" metaid="R_SPMS" name="Spermidine synthase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_SPMS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/SPMS" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:SPERMIDINESYN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.5.1.16" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01920" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95860" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12721" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12722" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12723" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12724" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0121" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ametam_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ptrc_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_5mta_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_spmd_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_G1SAT" metaid="R_G1SAT" name="Glutamate-1-semialdehyde aminotransferase"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_G1SAT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/G1SAT" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GSAAMINOTRANS-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/5.4.3.8" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02272" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99850" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14265" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14266" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14267" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14268" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0154" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glu1sa_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_5aop_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_KDOCT2" metaid="R_KDOCT2" name="3-deoxy-manno-octulosonate cytidylyltransferase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_KDOCT2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/KDOCT2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CPM-KDOSYNTH-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.7.38" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100932" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23448" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23449" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23450" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23451" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0918" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ctp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_kdo_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ckdo_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_OAADC" metaid="R_OAADC" name="Oxaloacetate decarboxylase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_OAADC">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/OAADC" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:OXALODECARB-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.38" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.40" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.1.1.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.1.1.3" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00217" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00219" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102097" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15641" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15642" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15643" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15644" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1850" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_oaa_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pyr_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MNNH" metaid="R_MNNH" name="D-mannonate hydrolyase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MNNH">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MNNH" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:MANNONDEHYDRAT-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.8" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R05606" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101679" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20097" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20098" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20099" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20100" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4322" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mana_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2ddglcn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ALTRH" metaid="R_ALTRH" name="Altronate hydrolase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ALTRH">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ALTRH" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ALTRODEHYDRAT-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.7" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01540" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95791" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15957" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15958" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15959" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15960" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3091" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_altrn_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2ddglcn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_GUI1" metaid="R_GUI1" name="Glucuronate isomerase (D-glucuronate)" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GUI1">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GUI1" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/5.3.1.12" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01482" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100468" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13049" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13050" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13051" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13052" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3092" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glcur_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fruur_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_PGAMT" metaid="R_PGAMT" name="Phosphoglucosamine mutase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PGAMT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PGAMT" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:5.4.2.10-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/5.4.2.10" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02060" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102526" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23424" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23425" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23426" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23427" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3176" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gam1p_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gam6p_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_UAGDP" metaid="R_UAGDP" name="UDP-N-acetylglucosamine diphosphorylase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_UAGDP">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/UAGDP" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.7.23" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105033" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3730" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_acgam1p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_utp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_uacgam_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_UAGCVT" metaid="R_UAGCVT" name="UDP-N-acetylglucosamine 1-carboxyvinyltransferase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_UAGCVT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/UAGCVT" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:UDPNACETYLGLUCOSAMENOLPYRTRANS-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.5.1.7" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00660" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105032" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18681" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18682" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18683" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18684" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3189" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pep_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_uacgam_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_uaccg_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_GLUR" metaid="R_GLUR" name="Glutamate racemase" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLUR">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLUR" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLUTRACE-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/5.1.1.3" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00260" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100288" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12813" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12814" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12815" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12816" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3967" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glu__D_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glu__L_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_UAG2E" metaid="R_UAG2E" name="UDP-N-acetylglucosamine 2-epimerase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_UAG2E">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/UAG2E" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:UDPGLCNACEPIM-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/5.1.3.14" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00420" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105024" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17213" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17214" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17215" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17216" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3786" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_uacgam_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_uacmam_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_acald_e" metaid="R_EX_acald_e" name="Acetaldehyde exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_acald_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/acald" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_acald_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_melib_e" metaid="R_EX_melib_e" name="Melibiose exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_melib_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/melib" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_melib_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MACPD" metaid="R_MACPD" name="Malonyl-ACP decarboxylase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MACPD">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MACPD" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:MALONYL-ACPDECARBOX-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.1.1.87" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R09482" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101327" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2323" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_malACP_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_acACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DMQMT" metaid="R_DMQMT" name="3-Dimethylubiquinonol 3-methyltransferase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DMQMT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DMQMT" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DHHB-METHYLTRANSFER-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.1.1.64" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97527" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28679" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28680" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28681" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28682" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2232" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2omhmbl_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_amet_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ahcys_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_q8h2_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ICHORS_copy1" metaid="R_ICHORS_copy1" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ICHORS_copy1">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ISOCHORSYN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/5.4.4.2" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01717" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100784" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18985" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18986" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18987" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18988" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0593" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_chor_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ichor_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_sucr_e" metaid="R_EX_sucr_e" name="Sucrose exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_sucr_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/sucr" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_sucr_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_tre_e" metaid="R_EX_tre_e" name="Trehalose exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_tre_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/tre" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_tre_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_EX_zn2_e" metaid="R_EX_zn2_e" name="Zinc exchange" reversible="true"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_zn2_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/zn2" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_zn2_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_HACD5" metaid="R_HACD5" name="3-hydroxyacyl-CoA dehydrogenase (3-oxododecanoyl-CoA)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_HACD5">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/HACD5" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.211" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.35" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R04741" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100546" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/31179" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/31180" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/31181" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/31182" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b3846" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2341" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3oddcoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadh_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3hddcoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nad_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DNMPPA" metaid="R_DNMPPA" name="Dihydroneopterin monophosphate dephosphorylase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DNMPPA">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DNMPPA" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DIHYDRONEOPTERIN-MONO-P-DEPHOS-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R04621" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97679" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dhpmp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dhnpt_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_HPPK2" metaid="R_HPPK2" name="6-hydroxymethyl-dihydropterin pyrophosphokinase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_HPPK2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/HPPK2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:H2PTERIDINEPYROPHOSPHOKIN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.6.3" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R03503" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100694" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11412" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11413" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11414" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11415" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0142" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_6hmhpt_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_6hmhptpp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_amp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PTPATi" metaid="R_PTPATi" name="Pantetheine-phosphate adenylyltransferase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PTPATi">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PTPATi" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PANTEPADENYLYLTRAN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.7.3" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R03035" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95892" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19801" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19802" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19803" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19804" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3634" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pan4p_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dpcoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_HEX7" metaid="R_HEX7" name="Hexokinase (D-fructose:ATP)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_HEX7">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/HEX7" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.1.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.1.4" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00867" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100614" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0394" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fru_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_f6p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DXPRIi" metaid="R_DXPRIi" name="1-deoxy-D-xylulose reductoisomerase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DXPRIi">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DXPRIi" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DXPREDISOM-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.267" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R05688" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97830" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13717" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13718" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13719" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13720" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0173" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dxyl5p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2me4p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_OPHBDC" metaid="R_OPHBDC" name="Octaprenyl-hydroxybenzoate decarboxylase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_OPHBDC">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/OPHBDC" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:3-OCTAPRENYL-4-OHBENZOATE-DECARBOX-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.1.1.98" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R04986" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102201" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27778" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27779" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27780" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27781" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3843" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3ophb_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2oph_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_OHPHM" metaid="R_OHPHM" name="2-octaprenyl-6-hydroxyphenol methylase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_OHPHM">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/OHPHM" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:2-OCTAPRENYL-6-OHPHENOL-METHY-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.1.1.222" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R04988" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102170" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27770" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27771" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27772" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27773" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2232" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2ohph_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_amet_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2omph_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ahcys_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_GHMT2r" metaid="R_GHMT2r" name="Glycine hydroxymethyltransferase, reversible"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GHMT2r">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GHMT2r" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.1.2.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00945" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100142" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15481" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15482" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15483" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15484" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2551" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ser__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_thf_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gly_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_mlthf_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DHORD2" metaid="R_DHORD2" name="Dihydoorotic acid dehydrogenase (quinone8)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DHORD2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DHORD2" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97418" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28687" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28688" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28689" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28690" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0945" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dhor__S_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_q8_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_orot_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_q8h2_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ADK4" metaid="R_ADK4" name="Adentylate kinase (ITP)" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ADK4">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ADK4" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95453" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29867" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29868" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29869" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29870" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0474" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_amp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_itp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_idp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_INSK" metaid="R_INSK" name="Insosine kinase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_INSK">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/INSK" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:INOSINEKIN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.1.73" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01131" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100845" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21140" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21141" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21142" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21143" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0477" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ins_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_imp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ABTA" metaid="R_ABTA" name="4-aminobutyrate transaminase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ABTA">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ABTA" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GABATRANSAM-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.6.1.19" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01648" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95186" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23352" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23353" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23354" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23355" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2662" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1302" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_4abut_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_akg_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glu__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_sucsal_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_SSALx" metaid="R_SSALx" name="Succinate-semialdehyde dehydrogenase (NAD)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_SSALx">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/SSALx" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:SUCCINATE-SEMIALDEHYDE-DEHYDROGENASE-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.2.1.16" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.2.1.24" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00713" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104540" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13217" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13218" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13219" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13220" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1525" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nad_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_sucsal_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadh_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_succ_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ASPT" metaid="R_ASPT" name="L-aspartase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ASPT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ASPT" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ASPARTASE-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.3.1.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00490" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96099" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16601" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16602" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16603" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16604" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4139" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_asp__L_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fum_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nh4_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_SERD_L" metaid="R_SERD_L" name="L-serine deaminase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_SERD_L">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/SERD_L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:4.3.1.17-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.3.1.15" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.3.1.17" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.3.1.19" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00220" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00223" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104339" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19169" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19170" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19171" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19172" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b3708" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1814" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4471" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2797" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3117" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ser__L_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nh4_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pyr_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_THRD" metaid="R_THRD" name="L-threonine dehydrogenase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_THRD">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/THRD" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:THREODEHYD-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.103" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01465" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103402" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13161" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13162" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13163" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13164" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b3616" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3589" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nad_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_thr__L_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2aobut_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadh_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_HEX4" metaid="R_HEX4" name="Hexokinase (D-mannose:ATP)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_HEX4">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/HEX4" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:MANNKIN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.1.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.1.7" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01326" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95795" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11028" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11029" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11030" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11031" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_man_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_man6p_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_KARA1" metaid="R_KARA1"
-      name="Ketol-acid reductoisomerase (2,3-dihydroxy-3-methylbutanoate)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_KARA1">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/KARA1" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ACETOLACTREDUCTOISOM-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.383" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.86" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R04439" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97523" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22068" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22069" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22070" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22071" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3774" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_23dhmb_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_alac__S_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadph_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_KARA2" metaid="R_KARA2" name="Ketol-acid reductoisomerase (2-Acetolactate)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_KARA2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/KARA2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ACETOOHBUTREDUCTOISOM-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.86" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100902" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13493" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13494" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13495" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13496" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3774" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2ahbut_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_23dhmp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ACCOAC" metaid="R_ACCOAC" name="Acetyl-CoA carboxylase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ACCOAC">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ACCOAC" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ACETYL-COA-CARBOXYLTRANSFER-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/6.4.1.2" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00742" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95219" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11308" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11309" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11310" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11311" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b3256" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2316" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3255" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0185" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_accoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_hco3_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_malcoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NADK" metaid="R_NADK" name="NAD kinase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NADK">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NADK" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:NAD-KIN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.1.23" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00104" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101882" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18629" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18630" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18631" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18632" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2615" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nad_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ICHORS_copy2" metaid="R_ICHORS_copy2" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ICHORS_copy2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ISOCHORSYN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/5.4.4.2" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01717" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100784" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18985" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18986" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18987" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18988" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2265" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_chor_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ichor_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_SUCBZS" metaid="R_SUCBZS" name="O-succinylbenzoate-CoA synthase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_SUCBZS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/SUCBZS" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.113" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104613" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2261" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2shchc_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_sucbz_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_DHBD" metaid="R_DHBD" name="2,3-dihydro-2,3-dihydroxybenzoate dehydrogenase"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DHBD">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DHBD" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DHBDEHYD-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.3.1.28" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01505" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97368" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23824" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23825" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23826" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23827" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0596" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_23ddhb_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nad_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_23dhb_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadh_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ICHORT" metaid="R_ICHORT" name="Isochorismatase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ICHORT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ICHORT" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ISOCHORMAT-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.3.2.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R03037" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100785" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11112" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11113" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11114" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11115" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0595" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ichor_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_23ddhb_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pyr_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_RBK_L1" metaid="R_RBK_L1" name="L-ribulokinase (L-ribulose)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_RBK_L1">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/RBK_L1" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-5116" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.1.16" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02439" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103433" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22072" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22073" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22074" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22075" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0063" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_rbl__L_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ru5p__L_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_RBP4E" metaid="R_RBP4E" name="L-ribulose-phosphate 4-epimerase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_RBP4E">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/RBP4E" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RIBULPEPIM-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/5.1.3.4" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R05850" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103434" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22368" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22369" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22370" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22371" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b4198" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0061" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3583" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ru5p__L_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_xu5p__D_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NTD2" metaid="R_NTD2" name="5'-nucleotidase (UMP)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NTD2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NTD2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-14025" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00963" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102032" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29359" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29360" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29361" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29362" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b4374" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2744" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0675" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ump_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_uri_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NTD4" metaid="R_NTD4" name="5'-nucleotidase (CMP)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NTD4">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NTD4" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-14026" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.91" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00511" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102034" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29367" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29368" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29369" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29370" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2744" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0675" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cmp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cytd_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NTD5" metaid="R_NTD5" name="5'-nucleotidase (dTMP)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NTD5">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NTD5" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:THYMIDYLATE-5-PHOSPHATASE-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.35" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.89" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01569" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102035" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11080" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11081" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11082" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11083" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2291" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2744" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4374" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2361" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dtmp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_thymd_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NTD6" metaid="R_NTD6" name="5'-nucleotidase (dAMP)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NTD6">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NTD6" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-14161" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.89" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02088" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102036" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29371" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29372" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29373" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29374" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2291" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2744" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2361" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_damp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dad_2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LGTHL" metaid="R_LGTHL" name="Lactoylglutathione lyase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LGTHL">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LGTHL" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLYOXI-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.4.1.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02530" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100355" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19069" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19070" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19071" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19072" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1651" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gthrd_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mthgxl_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_lgt__S_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PYDXPP" metaid="R_PYDXPP" name="Pyridoxal 5-phosphate phosphatase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PYDXPP">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PYDXPP" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:3.1.3.74-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.74" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00173" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103368" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20533" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20534" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20535" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20536" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0766" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0446" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3826" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0675" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pydx5p_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pydx_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PDXPP" metaid="R_PDXPP" name="Pyridoxine 5-phosphate phosphatase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PDXPP">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PDXPP" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-14181" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.74" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01911" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102440" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25112" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25113" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25114" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25115" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0766" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pdx5p_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pydxn_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_HACD6" metaid="R_HACD6" name="3-hydroxyacyl-CoA dehydrogenase (3-oxotetradecanoyl-CoA)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_HACD6">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/HACD6" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-12507" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.211" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.35" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R04739" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100547" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/31167" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/31168" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/31169" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/31170" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b3846" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2341" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3otdcoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadh_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3htdcoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nad_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ECOAH1" metaid="R_ECOAH1" name="3-hydroxyacyl-CoA dehydratase (3-hydroxybutanoyl-CoA)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ECOAH1">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ECOAH1" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-11667" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.150" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.17" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.55" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R03026" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97883" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/26558" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/26559" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/26560" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/26561" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2341" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3846" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3hbcoa_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_b2coa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ECOAH2" metaid="R_ECOAH2" name="3-hydroxyacyl-CoA dehydratase (3-hydroxyhexanoyl-CoA)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ECOAH2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ECOAH2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-12567" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.17" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.74" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R04749" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97886" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30547" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30548" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30549" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30550" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2341" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3846" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3hhcoa_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_hx2coa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ECOAH3" metaid="R_ECOAH3" name="3-hydroxyacyl-CoA dehydratase (3-hydroxyoctanoyl-CoA)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ECOAH3">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ECOAH3" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.17" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.74" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R04746" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97888" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/31199" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/31200" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/31201" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/31202" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2341" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3846" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3hocoa_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_oc2coa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_UGLT" metaid="R_UGLT" name="UDPglucose--hexose-1-phosphate uridylyltransferase"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_UGLT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/UGLT" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GALACTURIDYLYLTRANS-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.7.12" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00955" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105090" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13989" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13990" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13991" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13992" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0758" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gal1p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_udpg_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g1p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_udpgal_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DXPS" metaid="R_DXPS" name="1-deoxy-D-xylulose 5-phosphate synthase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DXPS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DXPS" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DXS-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.2.1.7" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R05636" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97831" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12605" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12606" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12607" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12608" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0420" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_g3p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pyr_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dxyl5p_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CDPMEK" metaid="R_CDPMEK" name="4-(cytidine 5'-diphospho)-2-C-methyl-D-erythritol kinase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CDPMEK">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CDPMEK" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:2.7.1.148-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.1.148" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R05634" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96558" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18437" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18438" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18439" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18440" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1208" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_4c2me_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2p4c2me_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MECDPS" metaid="R_MECDPS" name="2-C-methyl-D-erythritol 2,4-cyclodiphosphate synthase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MECDPS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MECDPS" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-302" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.6.1.12" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R05637" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101424" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23864" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23865" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23866" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23867" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2746" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2p4c2me_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2mecdp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cmp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DDGLK" metaid="R_DDGLK" name="2-dehydro-3-deoxygluconokinase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DDGLK">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DDGLK" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DEOXYGLUCONOKIN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.1.178" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.1.45" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01541" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97216" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14797" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14798" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14799" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14800" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3526" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2ddglcn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2ddg6p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_XYLI2" metaid="R_XYLI2" name="Xylose isomerase" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_XYLI2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/XYLI2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLUCISOM-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/5.3.1.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00307" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105254" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28546" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28547" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28548" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28549" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3565" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glc__D_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fru_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_PMANM" metaid="R_PMANM" name="Phosphomannomutase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PMANM">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PMANM" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PHOSMANMUT-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/5.4.2.8" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01818" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101729" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11140" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11141" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11142" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11143" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2048" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_man1p_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_man6p_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ICL" metaid="R_ICL" name="Isocitrate lyase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ICL">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ICL" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.1.3.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00479" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100789" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13245" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13246" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13247" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13248" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4015" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_icit_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glx_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_succ_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GLYCL" metaid="R_GLYCL" name="Glycine Cleavage System" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLYCL">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLYCL" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.4.4.2" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.8.1.4" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.1.2.10" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01221" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100330" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27758" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27759" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27760" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27761" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b0116" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2904" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2903" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2905" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gly_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nad_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_thf_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_mlthf_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadh_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nh4_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CMPN" metaid="R_CMPN" name="CMP nucleosidase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CMPN">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CMPN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.2.2.10" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96804" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cmp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_csn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_r5p_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_HCYSMT" metaid="R_HCYSMT" name="Homocysteine S-methyltransferase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_HCYSMT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/HCYSMT" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:HOMOCYSTEINE-S-METHYLTRANSFERASE-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.1.1.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.1.1.10" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00650" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100577" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21820" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21821" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21822" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21823" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0261" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_amet_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_hcys__L_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ahcys_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_met__L_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_UDPG4E" metaid="R_UDPG4E" name="UDPglucose 4-epimerase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_UDPG4E">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/UDPG4E" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:UDPGLUCEPIM-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/5.1.3.2" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00291" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105057" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22168" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22169" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22170" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22171" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0759" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_udpg_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_udpgal_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LACZ" metaid="R_LACZ" name="B-galactosidase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LACZ">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LACZ" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.2.1.108" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.2.1.23" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01100" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R06114" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101000" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10076" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10077" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10078" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10079" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0344" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_lcts_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gal_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glc__D_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_TRE6PH" metaid="R_TRE6PH" name="Trehalose-6-phosphate hydrolase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_TRE6PH">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/TRE6PH" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRE6PHYDRO-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.2.1.122" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.2.1.93" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00837" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R06113" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104925" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23008" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23009" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23010" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23011" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4239" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_tre6p_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g6p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glc__D_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_XYLI1" metaid="R_XYLI1" name="Xylose isomerase" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_XYLI1">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/XYLI1" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:XYLISOM-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/5.3.1.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01432" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105253" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22816" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22817" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22818" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22819" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3565" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_xyl__D_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_xylu__D_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PPC" metaid="R_PPC" name="Phosphoenolpyruvate carboxylase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PPC">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PPC" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.1.1.31" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00345" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103096" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23072" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23073" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23074" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23075" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3956" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_co2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pep_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_oaa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ALDD4" metaid="R_ALDD4" name="Aldehyde dehydrogenase (butanal, NAD)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ALDD4">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ALDD4" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95755" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_btal_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nad_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_but_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadh_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_G3PT" metaid="R_G3PT" name="Glycerol-3-phosphatase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_G3PT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/G3PT" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-14965" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.21" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00841" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99894" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0822" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0675" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glyc3p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glyc_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CINNDO" metaid="R_CINNDO" name="Cinnamate dioxygenase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CINNDO">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CINNDO" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.14.12.19" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R06783" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96722" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25058" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25059" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25060" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25061" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b2540" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2542" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2538" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2539" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cinnm_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadh_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_o2_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cenchddd_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nad_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DHPPD" metaid="R_DHPPD" name="2,3-dihydroxyphenylpropionate dehydrogenase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DHPPD">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DHPPD" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PHENPRODIOLDEHYDROG-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.3.1.87" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97434" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25062" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25063" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25064" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25065" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2541" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cechddd_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nad_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dhpppn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadh_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DHCIND" metaid="R_DHCIND" name="2,3-dihydroxycinnamate dehydrogenase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DHCIND">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DHCIND" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.3.1.87" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R06785" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97378" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25066" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25067" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25068" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25069" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2541" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cenchddd_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nad_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dhcinnm_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadh_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CITL" metaid="R_CITL" name="Citrate lyase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CITL">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CITL" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CITLY-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.1.3.6" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00362" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96731" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10760" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10761" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10762" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10763" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b0614" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0615" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0617" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0616" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cit_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ac_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_oaa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GOFUCR" metaid="R_GOFUCR" name="GDP-4-oxo-L-fucose reductase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GOFUCR">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GOFUCR" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.271" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100393" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2052" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gdpofuc_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gdpfuc_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PYDXK" metaid="R_PYDXK" name="Pyridoxal kinase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PYDXK">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PYDXK" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PYRIDOXKIN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.1.35" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00174" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103361" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10224" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10225" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10226" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10227" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2418" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1636" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pydx_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pydx5p_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GTPCII2" metaid="R_GTPCII2" name="GTP cyclohydrolase II (25drapp)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GTPCII2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GTPCII2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GTP-CYCLOHYDRO-II-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.5.4.25" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00425" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100455" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23704" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23705" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23706" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23707" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1277" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gtp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="3" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_25drapp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_for_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_URIC" metaid="R_URIC" name="Uricase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_URIC">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/URIC" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.7.3.3" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105159" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30651" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30652" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30653" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30654" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_o2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_urate_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_alltn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o2_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_SADT2" metaid="R_SADT2" name="Sulfate adenyltransferase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_SADT2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/SADT2" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.7.4" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104241" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b2752" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2751" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gtp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_so4_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_aps_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gdp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_LCARS" metaid="R_LCARS" name="Lacaldehyde reductase (S-propane-1,2-diol forming)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LCARS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LCARS" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:LACTALDREDUCT-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.77" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02258" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95714" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15933" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15934" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15935" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15936" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2799" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_lald__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadh_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_12ppd__S_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nad_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ALCD19" metaid="R_ALCD19" name="Alcohol dehydrogenase (glycerol)" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ALCD19">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ALCD19" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.21" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.72" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01036" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95709" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30027" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30028" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30029" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30030" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1478" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1241" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glyald_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadh_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glyc_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nad_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_RMPA" metaid="R_RMPA" name="Rhamnulose-1-phosphate aldolase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_RMPA">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/RMPA" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RHAMNULPALDOL-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.1.2.19" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02263" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104043" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19689" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19690" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19691" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19692" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3902" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_rml1p_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dhap_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_lald__L_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_SBTPD" metaid="R_SBTPD" name="Sorbitol-6-phosphate dehydrogenase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_SBTPD">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/SBTPD" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.140" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R05607" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104285" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19837" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19838" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19839" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19840" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2705" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nad_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_sbt6p_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_f6p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadh_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PFK_2" metaid="R_PFK_2" name="Phosphofructokinase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PFK_2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PFK_2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TAGAKIN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.1.11" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.1.144" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.1.56" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R03236" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102509" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12420" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12421" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12422" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12423" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3916" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_tag6p__D_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_tagdp__D_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_GLTPD" metaid="R_GLTPD" name="Galactitol-1-phosphate dehydrogenase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLTPD">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLTPD" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.251" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.M6" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R05571" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100275" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2091" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_galt1p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nad_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadh_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_tag6p__D_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_TGBPA" metaid="R_TGBPA" name="Tagatose-bisphosphate aldolase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_TGBPA">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/TGBPA" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TAGAALDOL-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.1.2.40" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01069" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104798" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22948" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22949" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22950" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22951" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b3132" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3137" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b2095" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2096" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_tagdp__D_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dhap_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g3p_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_MANAO" metaid="R_MANAO" name="Mannonate oxidoreductase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MANAO">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MANAO" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:MANNONOXIDOREDUCT-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.57" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02454" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101389" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15729" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15730" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15731" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15732" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4323" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mana_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nad_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fruur_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadh_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_TAGURr" metaid="R_TAGURr" name="Tagaturonate reductase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_TAGURr">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/TAGURr" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ALTRO-OXIDOREDUCT-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.58" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02555" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104710" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17813" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17814" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17815" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17816" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1521" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_altrn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nad_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadh_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_tagur_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PGLYCP" metaid="R_PGLYCP" name="Phosphoglycolate phosphatase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PGLYCP">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PGLYCP" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GPH-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.18" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01334" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102543" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14369" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14370" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14371" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14372" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3385" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2pglyc_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glyclt_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GLXCL" metaid="R_GLXCL" name="Glyoxalate carboligase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLXCL">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLXCL" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLYOCARBOLIG-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.1.1.47" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00013" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100303" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10136" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10137" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10138" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10139" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0507" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glx_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2h3oppan_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_TARTD" metaid="R_TARTD" name="L(+)-tartrate dehydratase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_TARTD">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/TARTD" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:LTARTDEHYDRA-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.32" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00339" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104718" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15413" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15414" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15415" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15416" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b3062" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3061" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_tartr__L_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_oaa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GLCRAL" metaid="R_GLCRAL" name="5-dehydro-4-deoxyglucarate aldolase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLCRAL">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLCRAL" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:KDGALDOL-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.1.2.20" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02754" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100219" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27726" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27727" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27728" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27729" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3126" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_5dh4dglc_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2h3oppan_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pyr_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_KAS14" metaid="R_KAS14" name="Beta-ketoacyl-ACP synthase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_KAS14">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/KAS14" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:3-OXOACYL-ACP-SYNTH-BASE-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.179" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.180" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.41" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.85" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.86" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R04355" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100912" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2323" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1095" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_acACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_malACP_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_actACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EDTXS1" metaid="R_EDTXS1" name="Endotoxin Synthesis (lauroyl transferase)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EDTXS1">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/EDTXS1" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.241" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97899" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1054" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ddcaACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_kdo2lipid4_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_kdo2lipid4L_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EDTXS2" metaid="R_EDTXS2" name="Endotoxin Synthesis (myristoyl transferase)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EDTXS2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/EDTXS2" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.243" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97901" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1855" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_kdo2lipid4L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_myrsACP_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_lipa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EDTXS3" metaid="R_EDTXS3" name="Endotoxin Synthesis (palmitoleoyl ACP)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EDTXS3">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/EDTXS3" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97903" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2378" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_hdeACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_kdo2lipid4_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_kdo2lipid4p_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EDTXS4" metaid="R_EDTXS4" name="Endotoxin Synthesis (myristoyl transferase)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EDTXS4">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/EDTXS4" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97904" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1855" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_kdo2lipid4p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_myrsACP_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_lipa_cold_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_tmao_e" metaid="R_EX_tmao_e" name="Trimethylamine N-oxide exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_tmao_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/tmao" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_tmao_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NNDPR" metaid="R_NNDPR" name="Nicotinate-nucleotide diphosphorylase (carboxylating)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NNDPR">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NNDPR" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:QUINOPRIBOTRANS-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.4.2.19" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R03348" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101980" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12733" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12734" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12735" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12736" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0109" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_prpp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_quln_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nicrnt_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_HACD4" metaid="R_HACD4" name="3-hydroxyacyl-CoA dehydrogenase (3-oxodecanoyl-CoA)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_HACD4">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/HACD4" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-12490" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.211" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.35" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R04743" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100545" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/31187" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/31188" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/31189" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/31190" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b3846" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2341" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3odcoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadh_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3hdcoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nad_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_HACD7" metaid="R_HACD7" name="3-hydroxyacyl-CoA dehydrogenase (3-oxohexadecanoyl-CoA)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_HACD7">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/HACD7" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-14271" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.211" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.35" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R04737" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100548" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/31159" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/31160" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/31161" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/31162" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2341" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3846" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3ohdcoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadh_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3hhdcoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nad_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_AACPS1" metaid="R_AACPS1" name="Acyl-[acyl-carrier-protein] synthetase (n-C14:0)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_AACPS1">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/AACPS1" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/6.2.1.20" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95138" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b1094" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2836" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ttdca_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_amp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_myrsACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_SDPDS" metaid="R_SDPDS" name="Succinyl-diaminopimelate desuccinylase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_SDPDS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/SDPDS" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:SUCCDIAMINOPIMDESUCC-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.5.1.18" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02734" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104300" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22608" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22609" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22610" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22611" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2472" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_sl26da_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_26dap_LL_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_succ_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DMSOR1" metaid="R_DMSOR1" name="Dimethyl sulfoxide reductase (Menaquinol 8)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DMSOR1">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DMSOR1" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97529" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29203" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29204" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29205" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29206" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b1588" />
-              <fbc:geneProductRef fbc:geneProduct="G_b1589" />
-              <fbc:geneProductRef fbc:geneProduct="G_b1590" />
-              <fbc:geneProductRef fbc:geneProduct="G_b1587" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b0896" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0895" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0894" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dmso_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mql8_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dms_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_mqn8_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DKGLCNR2y" metaid="R_DKGLCNR2y" name="2,5-diketo-D-gluconate reductase (NADPH)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DKGLCNR2y">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DKGLCNR2y" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:YIAE1-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.215" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R08879" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97491" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27634" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27635" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27636" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27637" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3553" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_25dkglcn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_5dglcn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_2DGULRy" metaid="R_2DGULRy" name="2-dehydro-L-gulonate reductase (NADPH)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_2DGULRy">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/2DGULRy" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94788" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3553" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2dhguln_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_idon__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_RZ5PP" metaid="R_RZ5PP" name="Alpha-ribazole 5-phosphate phosphatase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_RZ5PP">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/RZ5PP" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RIBAZOLEPHOSPHAT-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-16788" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.73" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R04594" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104116" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24456" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24457" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24458" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24459" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0638" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_5prdmbz_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_rdmbzi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NTD9" metaid="R_NTD9" name="5'-nucleotidase (GMP)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NTD9">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NTD9" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-7609" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01227" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100381" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27714" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27715" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27716" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27717" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2361" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2744" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3399" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0675" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gmp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gsn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NTD10" metaid="R_NTD10" name="5'-nucleotidase (XMP)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NTD10">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NTD10" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:XMPXAN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02719" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102029" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28530" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28531" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28532" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28533" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2744" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_xmp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_xtsn_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ADPT" metaid="R_ADPT" name="Adenine phosphoribosyltransferase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ADPT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ADPT" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ADENPRIBOSYLTRAN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.4.2.7" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.4.2.8" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00190" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95482" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16609" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16610" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16611" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16612" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0469" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ade_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_prpp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_amp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ADK1" metaid="R_ADK1" name="Adenylate kinase" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ADK1">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ADK1" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ADENYL-KIN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.4.3" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00127" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95450" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12973" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12974" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12975" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12976" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0474" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_amp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="2" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_OCTDPS" metaid="R_OCTDPS" name="Octaprenyl pyrophosphate synthase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_OCTDPS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/OCTDPS" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-8992" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.5.1.90" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R09248" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102153" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27798" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27799" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27800" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27801" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3187" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_frdp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ipdp_c" stoichiometry="5" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_octdp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="5" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_26dap__M_e" metaid="R_EX_26dap__M_e" name="Meso-2,6-Diaminoheptanedioate exchange"
-      reversible="false" sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_26dap__M_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/26dap__M" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_26dap__M_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_acnam_e" metaid="R_EX_acnam_e" name="N-Acetylneuraminate exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_acnam_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/acnam" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_acnam_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_amp_e" metaid="R_EX_amp_e" name="AMP exchange" reversible="false" sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_amp_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/amp" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_amp_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_dha_e" metaid="R_EX_dha_e" name="Dihydroxyacetone exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_dha_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/dha" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dha_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_fuc__L_e" metaid="R_EX_fuc__L_e" name="L-Fucose exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_fuc__L_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/fuc__L" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fuc__L_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_glyald_e" metaid="R_EX_glyald_e" name="D-Glyceraldehyde exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_glyald_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/glyald" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glyald_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_AACPS2" metaid="R_AACPS2" name="Acyl-[acyl-carrier-protein] synthetase  (n-C14:1)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_AACPS2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/AACPS2" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/6.2.1.20" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95141" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b1094" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2836" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ttdcea_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_amp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_tdeACP_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_AACPS3" metaid="R_AACPS3" name="Acyl-[acyl-carrier-protein] synthetase  (n-C16:0)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_AACPS3">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/AACPS3" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/6.2.1.20" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95142" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b1094" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2836" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_hdca_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_amp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_palmACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_AACPS4" metaid="R_AACPS4" name="Acyl-[acyl-carrier-protein] synthetase  (n-C16:1)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_AACPS4">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/AACPS4" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95143" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b2836" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1094" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_hdcea_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_amp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_hdeACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_rmn_e" metaid="R_EX_rmn_e" name="L-Rhamnose exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_rmn_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/rmn" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_rmn_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_ttdca_e" metaid="R_EX_ttdca_e" name="Tetradecanoate (n-C14:0) exchange"
-      reversible="false" sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_ttdca_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ttdca" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ttdca_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_AMANK" metaid="R_AMANK" name="N-acetyl-D-mannosamine kinase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_AMANK">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/AMANK" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:NANK-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.1.60" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02705" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95805" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25253" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25254" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25255" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25256" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3222" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_acmana_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_acmanap_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_glyclt_e" metaid="R_EX_glyclt_e" name="Glycolate exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_glyclt_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/glyclt" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glyclt_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_g6p_e" metaid="R_EX_g6p_e" name="D-Glucose 6-phosphate exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_g6p_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/g6p" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_g6p_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_2ddglcn_e" metaid="R_EX_2ddglcn_e" name="2-Dehydro-3-deoxy-D-gluconate exchange"
-      reversible="false" sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_2ddglcn_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/2ddglcn" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2ddglcn_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_galct__D_e" metaid="R_EX_galct__D_e" name="D-Galactarate exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_galct__D_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/galct__D" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_galct__D_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_idon__L_e" metaid="R_EX_idon__L_e" name="L-Idonate exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_idon__L_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/idon__L" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_idon__L_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_indole_e" metaid="R_EX_indole_e" name="Indole exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_indole_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/indole" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_indole_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_3hcinnm_e" metaid="R_EX_3hcinnm_e" name="3-hydroxycinnamic acid exchange"
-      reversible="false" sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_3hcinnm_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/3hcinnm" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3hcinnm_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_acmana_e" metaid="R_EX_acmana_e" name="N-Acetyl-D-mannosamine exchange"
-      reversible="false" sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_acmana_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/acmana" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_acmana_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_galur_e" metaid="R_EX_galur_e" name="D-Galacturonate exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_galur_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/galur" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_galur_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_but_e" metaid="R_EX_but_e" name="Butyrate (n-C4:0) exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_but_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/but" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_but_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_cbl1_e" metaid="R_EX_cbl1_e" name="Cob(I)alamin exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_cbl1_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/cbl1" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cbl1_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ACNML" metaid="R_ACNML" name="N-Acetylneuraminate lyase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ACNML">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ACNML" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ACNEULY-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.1.3.3" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01811" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95296" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23296" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23297" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23298" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23299" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3225" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_acnam_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_acmana_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pyr_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CAT" metaid="R_CAT" name="Catalase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CAT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CAT" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CATAL-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.11.1.21" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.11.1.6" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00009" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96455" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20309" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20310" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20311" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20312" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1732" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3942" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o2_c" stoichiometry="2" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_o2_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_SERASr" metaid="R_SERASr" name="(L-seryl)adenylate synthase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_SERASr">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/SERASr" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ENTF-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104332" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28570" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28571" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28572" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28573" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0586" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ser__L_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_seramp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DMSOR2" metaid="R_DMSOR2" name="Dimethyl sulfoxide reductase (Demethylmenaquinol 8)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DMSOR2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DMSOR2" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97531" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30587" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30588" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30589" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30590" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b0896" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0895" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0894" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2dmmql8_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dmso_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2dmmq8_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dms_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ACMAMUT" metaid="R_ACMAMUT" name="UDP-N-acetyl-D-mannosaminuronic acid transferase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ACMAMUT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ACMAMUT" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:UDPMANACATRANS-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.4.1.180" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R04477" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95274" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28366" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28367" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28368" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28369" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3794" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_uacmamu_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_unaga_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_udp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_unagamu_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DDGALK" metaid="R_DDGALK" name="2-dehydro-3-deoxygalactonokinase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DDGALK">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DDGALK" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DEHYDDEOXGALACTKIN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.1.178" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.1.58" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R03387" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97213" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16525" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16526" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16527" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16528" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3693" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2dh3dgal_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2dh3dgal6p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_AB6PGH" metaid="R_AB6PGH" name="Arbutin 6-phosphate glucohydrolase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_AB6PGH">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/AB6PGH" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.2.1.86" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95165" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b3721" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2901" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2716" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_arbt6p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g6p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_hqn_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_AMALT1" metaid="R_AMALT1" name="Amylomaltase (maltotriose)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_AMALT1">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/AMALT1" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:AMYLOMALT-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.4.1.25" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95800" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3416" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_malt_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_malttr_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glc__D_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_maltttr_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_MLTP2" metaid="R_MLTP2" name="Maltodextrin phosphorylase (maltohexaose)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MLTP2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MLTP2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-14285" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.4.1.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101633" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29683" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29684" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29685" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29686" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3417" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_malthx_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pi_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g1p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_maltpt_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PACCOAL" metaid="R_PACCOAL" name="Phenylacetate-CoA ligase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PACCOAL">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PACCOAL" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-10819" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/6.2.1.30" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02539" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102315" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20956" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20957" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20958" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20959" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1398" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_coa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pac_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_amp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_phaccoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GP4GH" metaid="R_GP4GH" name="Gp4G hydrolase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GP4GH">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GP4GH" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100398" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30203" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30204" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30205" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30206" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0049" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gp4g_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gdp_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ACGAMT" metaid="R_ACGAMT"
-      name="UDP-N-acetylglucosamine:undecaprenylphosphate N-acetylglucosamine -1-phosphate transferase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ACGAMT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ACGAMT" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95251" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3784" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_uacgam_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_udcpp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ump_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_unaga_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_AADDGT" metaid="R_AADDGT" name="DTDP-N-4-acetamido-4,6-dideoxy-D-galactose transferase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_AADDGT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/AADDGT" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:FUC4NACTRANS-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.4.1.325" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95151" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4481" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dtdp4aaddg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_unagamu_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dtdp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_unagamuf_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_gbbtn_e" metaid="R_EX_gbbtn_e" name="Gamma-butyrobetaine exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_gbbtn_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/gbbtn" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gbbtn_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_tma_e" metaid="R_EX_tma_e" name="Trimethylamine exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_tma_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/tma" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_tma_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GMHEPK" metaid="R_GMHEPK" name="D-glycero-D-manno-heptose 7-phosphate kinase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GMHEPK">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GMHEPK" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100379" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3052" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gmhep7p_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gmhep17bp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_malttr_e" metaid="R_EX_malttr_e" name="Maltotriose exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_malttr_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/malttr" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_malttr_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_TRE6PS" metaid="R_TRE6PS" name="Alpha,alpha-trehalose-phosphate synthase (UDP-forming)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_TRE6PS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/TRE6PS" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TREHALOSE6PSYN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.4.1.15" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00836" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R06043" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104927" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18889" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18890" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18891" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18892" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1896" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_g6p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_udpg_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_tre6p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_udp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_UDCPDP" metaid="R_UDCPDP" name="Undecaprenyl-diphosphatase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_UDCPDP">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/UDCPDP" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105042" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17069" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17070" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17071" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17072" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1278" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0841" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3057" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_udcpdp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_udcpp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_TREH" metaid="R_TREH" name="Alpha,alpha-trehalase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_TREH">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/TREH" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.2.1.28" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00010" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R06103" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95163" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20868" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20869" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20870" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20871" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3519" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_tre_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glc__D_c" stoichiometry="2" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_CYTK1" metaid="R_CYTK1" name="Cytidylate kinase (CMP)" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CYTK1">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CYTK1" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-11832" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.4.14" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.4.25" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00512" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97047" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11600" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11601" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11602" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11603" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0910" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cmp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cdp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_CYTK2" metaid="R_CYTK2" name="Cytidylate kinase (dCMP)" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CYTK2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CYTK2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-7913" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.4.13" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.4.14" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.4.25" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01665" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97053" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25094" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25095" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25096" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25097" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0910" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dcmp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dcdp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_GK1" metaid="R_GK1" name="Guanylate kinase (GMP:ATP)" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GK1">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GK1" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GUANYL-KIN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.4.8" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00332" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100144" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20780" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20781" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20782" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20783" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3648" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gmp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gdp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_HACD1" metaid="R_HACD1" name="3-hydroxyacyl-CoA dehydrogenase (acetoacetyl-CoA)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_HACD1">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/HACD1" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-11662" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.35" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01975" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100541" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30799" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30800" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30801" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30802" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b3846" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2341" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_aacoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadh_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3hbcoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nad_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_HACD2" metaid="R_HACD2" name="3-hydroxyacyl-CoA dehydrogenase (3-oxohexanoyl-CoA)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_HACD2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/HACD2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-12570" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.211" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.35" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R04748" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100543" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/31143" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/31144" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/31145" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/31146" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b3846" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2341" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3ohcoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadh_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3hhcoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nad_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_hdcea_e" metaid="R_EX_hdcea_e" name="Hexadecenoate (n-C16:1) exchange"
-      reversible="false" sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_hdcea_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/hdcea" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_hdcea_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ACACCT" metaid="R_ACACCT" name="Acetyl-CoA:acetoacetyl-CoA transferase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ACACCT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ACACCT" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ACETOACETYL-COA-TRANSFER-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.8.3.8" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.8.3.9" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01359" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95193" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27806" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27807" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27808" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27809" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b2222" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2221" />
-            </fbc:and>
-            <fbc:geneProductRef fbc:geneProduct="G_b1694" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_acac_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_accoa_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_aacoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ac_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_BUTCT" metaid="R_BUTCT" name="Acetyl-CoA:butyrate-CoA transferase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_BUTCT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/BUTCT" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.8.3.8" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96217" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b2222" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2221" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_accoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_but_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ac_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_btcoa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_2DGULRx" metaid="R_2DGULRx" name="2-dehydro-L-gulonate reductase (NADH)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_2DGULRx">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/2DGULRx" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94787" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3553" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2dhguln_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadh_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_idon__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nad_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_G1PTT" metaid="R_G1PTT" name="Glucose-1-phosphate thymidylyltransferase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_G1PTT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/G1PTT" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DTDPGLUCOSEPP-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.7.24" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02328" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99846" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15225" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15226" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15227" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15228" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2039" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3789" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dttp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_g1p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dtdpglu_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_TDPGDH" metaid="R_TDPGDH" name="DTDPglucose 4,6-dehydratase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_TDPGDH">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/TDPGDH" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DTDPGLUCDEHYDRAT-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.46" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R06513" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104761" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17221" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17222" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17223" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17224" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b3788" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2041" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dtdpglu_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dtdp4d6dg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_UDPGALM" metaid="R_UDPGALM" name="UDPgalactopyranose mutase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_UDPGALM">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/UDPGALM" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GALPMUT-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/5.4.99.9" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00505" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105058" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24132" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24133" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24134" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24135" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2036" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_udpgal_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_udpgalfur_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_TDPDRE" metaid="R_TDPDRE" name="DTDP-4-dehydrorhamnose 3,5-epimerase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_TDPDRE">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/TDPDRE" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DTDPDEHYDRHAMEPIM-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/5.1.3.13" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R06514" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104759" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16969" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16970" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16971" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16972" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2038" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dtdp4d6dg_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dtdp4d6dm_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_TDPDRR" metaid="R_TDPDRR" name="DTDP-4-dehydrorhamnose reductase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_TDPDRR">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/TDPDRR" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DTDPDEHYRHAMREDUCT-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.133" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02777" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104760" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21796" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21797" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21798" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21799" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2040" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dtdp4d6dm_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dtdprmn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_G3PD6" metaid="R_G3PD6" name="Glycerol-3-phosphate dehydrogenase (menaquinone-8)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_G3PD6">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/G3PD6" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99881" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29223" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29224" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29225" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29226" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b2242" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2243" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2241" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glyc3p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mqn8_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dhap_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_mql8_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ALLTN" metaid="R_ALLTN" name="Allantoinase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ALLTN">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ALLTN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.5.2.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95769" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30819" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30820" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30821" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30822" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0512" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_alltn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_alltt_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_UAPGR" metaid="R_UAPGR" name="UDP-N-acetylenolpyruvoylglucosamine reductase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_UAPGR">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/UAPGR" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:UDPNACETYLMURAMATEDEHYDROG-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.3.1.98" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R03192" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105041" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12248" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12249" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12250" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12251" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3972" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_uaccg_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_uamr_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_NDPK7" metaid="R_NDPK7" name="Nucleoside-diphosphate kinase (ATP:dCDP)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NDPK7">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NDPK7" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DCDPKIN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.4.6" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02326" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101939" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27678" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27679" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27680" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27681" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0474" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2518" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dcdp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dctp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_AOBUTDs" metaid="R_AOBUTDs" name="L-2-amino-3-oxobutanoate decarboxylation (spontaneous)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_AOBUTDs">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/AOBUTDs" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:THREOSPON-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.381" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R03758" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95851" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25653" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25654" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25655" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25656" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_s0001" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2aobut_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_aact_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_GLYAT" metaid="R_GLYAT" name="Glycine C-acetyltransferase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLYAT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLYAT" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:AKBLIG-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.29" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.37" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00371" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100313" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20736" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20737" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20738" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20739" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3617" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_accoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gly_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2aobut_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_coa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ADNUC" metaid="R_ADNUC" name="Adenosine hydrolase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ADNUC">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ADNUC" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ADENOSINE-NUCLEOSIDASE-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.2.2.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.2.2.7" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.2.2.8" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01245" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95459" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18669" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18670" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18671" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18672" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0030" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_adn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ade_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_rib__D_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GMHEPPA" metaid="R_GMHEPPA" name="D-glycero-D-manno-heptose 1,7-bisphosphate phosphatase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GMHEPPA">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GMHEPPA" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100380" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0200" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gmhep17bp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gmhep1p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_S7PI" metaid="R_S7PI" name="Sedoheptulose 7-phosphate isomerase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_S7PI">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/S7PI" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-4301" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/5.3.1.28" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R05645" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R09768" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104235" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0222" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_s7p_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gmhep7p_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_TRPS3" metaid="R_TRPS3" name="Tryptophan synthase (indoleglycerol phosphate)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_TRPS3">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/TRPS3" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-2381" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.1.2.8" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.20" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02340" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99889" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14081" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14082" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14083" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14084" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b1260" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1261" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3ig3p_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g3p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_indole_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_CRNBTCT" metaid="R_CRNBTCT" name="Gamma-butyrobetainyl-CoA: carnitine CoA transferase"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CRNBTCT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CRNBTCT" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-3601" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.8.3.21" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R10644" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96894" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28418" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28419" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28420" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28421" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0038" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_bbtcoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_crn_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_crncoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gbbtn_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_CRNCBCT" metaid="R_CRNCBCT" name="Crotonobetainyl-CoA: carnitine CoA transferase"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CRNCBCT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CRNCBCT" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-14936" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.8.3.21" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R10643" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96899" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28526" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28527" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28528" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28529" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0038" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_crn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ctbtcoa_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_crncoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ctbt_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_CRNCDH" metaid="R_CRNCDH" name="Carnityl-CoA dehydratse" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CRNCDH">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CRNCDH" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CARNDETRU-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.149" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R10675" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96900" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28338" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28339" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28340" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28341" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0036" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_crncoa_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ctbtcoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FADRx" metaid="R_FADRx" name="FAD reductase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FADRx">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FADRx" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-8506" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.5.1.36" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.5.1.37" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.5.1.45" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R09748" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99215" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30147" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30148" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30149" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30150" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3844" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fad_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadh_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fadh2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nad_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GTPDPK" metaid="R_GTPDPK" name="GTP diphosphokinase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GTPDPK">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GTPDPK" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GTPPYPHOSKIN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.6.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00429" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100457" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22088" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22089" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22090" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22091" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2784" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gtp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_amp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gdptp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NADN" metaid="R_NADN" name="NAD nucleosidase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NADN">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NADN" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:NADNUCLEOSID-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-13859" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.2.2.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.2.2.6" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.5.1.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00102" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101888" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16301" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16302" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16303" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16304" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nad_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adprib_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ncam_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_NDPK2" metaid="R_NDPK2" name="Nucleoside-diphosphate kinase (ATP:UDP)" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NDPK2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NDPK2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:UDPKIN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.4.6" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00156" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101935" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25098" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25099" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25100" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25101" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0474" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2518" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_udp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_utp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_NDPK3" metaid="R_NDPK3" name="Nucleoside-diphosphate kinase (ATP:CDP)" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NDPK3">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NDPK3" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CDPKIN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.4.6" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00570" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101936" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25237" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25238" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25239" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25240" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2518" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0474" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cdp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ctp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_NDPK4" metaid="R_NDPK4" name="Nucleoside-diphosphate kinase (ATP:dTDP)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NDPK4">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NDPK4" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DTDPKIN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.4.6" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02093" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101937" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27682" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27683" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27684" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27685" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0474" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2518" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dtdp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dttp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FCLT" metaid="R_FCLT" name="Ferrochelatase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FCLT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FCLT" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PROTOHEMEFERROCHELAT-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.99.1.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00310" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99471" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22584" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22585" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22586" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22587" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2431" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0475" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1019" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fe2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ppp9_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pheme_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_HBZOPT" metaid="R_HBZOPT" name="Hydroxybenzoate octaprenyltransferase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_HBZOPT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/HBZOPT" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:4OHBENZOATE-OCTAPRENYLTRANSFER-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.5.1.39" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R05615" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100566" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27782" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27783" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27784" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27785" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4040" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_4hbz_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_octdp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3ophb_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PNTK" metaid="R_PNTK" name="Pantothenate kinase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PNTK">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PNTK" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PANTOTHENATE-KIN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.1.33" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R03018" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103050" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16373" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16374" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16375" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16376" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3974" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pnto__R_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_4ppan_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DPCOAK" metaid="R_DPCOAK" name="Dephospho-CoA kinase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DPCOAK">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DPCOAK" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DEPHOSPHOCOAKIN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.1.24" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00130" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97762" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18245" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18246" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18247" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18248" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0103" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dpcoa_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_coa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_HETZK" metaid="R_HETZK" name="Hydroxyethylthiazole kinase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_HETZK">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/HETZK" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:THIAZOLSYN3-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.1.50" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R04448" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100611" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24212" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24213" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24214" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24215" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2104" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_4mhetz_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_4mpetz_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_KDOPS" metaid="R_KDOPS" name="3-deoxy -D-manno-octulosonic -acid 8-phosphate synthase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_KDOPS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/KDOPS" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.5.1.55" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R03254" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100934" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14053" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14054" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14055" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14056" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1215" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ara5p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pep_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_kdo8p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_KDOPP" metaid="R_KDOPP" name="3-deoxy-manno-octulosonate-8-phosphatase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_KDOPP">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/KDOPP" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:KDO-8PPHOSPHAT-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.45" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100933" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11500" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11501" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11502" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11503" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3198" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_kdo8p_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_kdo_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_AST" metaid="R_AST" name="Arginine succinyltransferase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_AST">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/AST" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ARGININE-N-SUCCINYLTRANSFERASE-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.109" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00832" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96115" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15185" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15186" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15187" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15188" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1747" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_arg__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_succoa_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_coa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_sucarg_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_SGDS" metaid="R_SGDS" name="Succinylglutamate desuccinylase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_SGDS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/SGDS" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:SUCCGLUDESUCC-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.5.1.96" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00411" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104362" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15169" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15170" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15171" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15172" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1744" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_sucglu_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glu__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_succ_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CYNTAH" metaid="R_CYNTAH" name="Cyanate aminohydrolase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CYNTAH">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CYNTAH" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-12893" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.104" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R10079" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96961" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11120" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11121" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11122" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11123" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0340" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cynt_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="3" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_hco3_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nh4_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GSPMDA" metaid="R_GSPMDA" name="Glutathionylspermidine amidase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GSPMDA">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GSPMDA" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GSPAMID-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.5.1.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.5.1.78" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01918" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100437" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17173" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17174" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17175" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17176" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2988" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gtspmd_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gthrd_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_spmd_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GSPMDS" metaid="R_GSPMDS" name="Glutathionylspermidine synthetase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GSPMDS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GSPMDS" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GSPSYN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/6.3.1.8" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/6.3.1.9" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01917" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100438" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21272" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21273" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21274" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21275" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2988" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gthrd_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_spmd_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gtspmd_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GUAD" metaid="R_GUAD" name="Guanine deaminase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GUAD">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GUAD" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GUANINE-DEAMINASE-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.5.4.3" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01676" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100464" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14665" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14666" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14667" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14668" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2883" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gua_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nh4_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_xan_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_TMAOR1" metaid="R_TMAOR1" name="Trimethylamine N-oxide reductase (menaquinol 8)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_TMAOR1">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/TMAOR1" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104878" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29279" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29280" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29281" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29282" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b0896" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0895" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0894" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b1588" />
-              <fbc:geneProductRef fbc:geneProduct="G_b1589" />
-              <fbc:geneProductRef fbc:geneProduct="G_b1590" />
-              <fbc:geneProductRef fbc:geneProduct="G_b1587" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mql8_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_tmao_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_mqn8_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_tma_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_TMAOR2" metaid="R_TMAOR2" name="Trimethylamine N-oxide reductase (demethylmenaquinol 8)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_TMAOR2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/TMAOR2" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104880" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30583" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30584" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30585" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30586" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b0896" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0895" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0894" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2dmmql8_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_tmao_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2dmmq8_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_tma_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_DGK1" metaid="R_DGK1" name="Deoxyguanylate kinase (dGMP:ATP)" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DGK1">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DGK1" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GMKALT-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.4.12" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.4.13" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.4.8" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02090" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97320" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12697" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12698" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12699" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12700" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3648" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dgmp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dgdp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_DTMPK" metaid="R_DTMPK" name="DTMP kinase" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DTMPK">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DTMPK" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DTMPKI-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.4.12" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.4.13" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.4.9" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02094" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97804" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13517" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13518" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13519" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13520" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1098" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dtmp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dtdp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_NDPK1" metaid="R_NDPK1" name="Nucleoside-diphosphate kinase (ATP:GDP)" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NDPK1">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NDPK1" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GDPKIN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.4.6" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00330" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96119" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27686" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27687" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27688" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27689" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0474" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2518" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gdp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gtp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_TRDR" metaid="R_TRDR" name="Thioredoxin reductase (NADPH)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_TRDR">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/TRDR" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:THIOREDOXIN-REDUCT-NADPH-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.6.4.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.8.1.9" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02016" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104766" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b0888" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3781" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b2582" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0888" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_trdox_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_trdrd_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_PGMT" metaid="R_PGMT" name="Phosphoglucomutase" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PGMT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PGMT" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PHOSPHOGLUCMUT-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-16999" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/5.4.2.2" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/5.4.2.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/5.4.2.8" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R08639" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102548" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0688" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2690" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1317" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_g1p_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g6p_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FRUK" metaid="R_FRUK" name="Fructose-1-phosphate kinase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FRUK">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FRUK" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.1.56" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99652" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14213" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14214" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14215" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14216" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2168" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_f1p_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fdp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_RHCCE" metaid="R_RHCCE" name="S-ribosylhomocysteine cleavage enzyme" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_RHCCE">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/RHCCE" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RIBOSYLHOMOCYSTEINASE-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.4.1.21" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01291" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104026" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17753" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17754" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17755" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17756" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2687" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_rhcys_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dhptd_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_hcys__L_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_KG6PDC" metaid="R_KG6PDC" name="3-keto-L-gulonate 6-phosphate decarboxylase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_KG6PDC">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/KG6PDC" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-705" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.1.1.85" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R07125" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100935" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14353" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14354" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14355" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14356" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b4196" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3581" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3dhgulnp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_xu5p__L_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_X5PL3E" metaid="R_X5PL3E" name="L-xylulose 5-phosphate 3-epimerase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_X5PL3E">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/X5PL3E" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:LXULRU5P-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/5.-.-.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/5.1.3.22" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R03244" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105224" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18497" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18498" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18499" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18500" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b4197" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3582" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_xu5p__L_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ru5p__L_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DOGULNR" metaid="R_DOGULNR" name="2,3 dioxo-L-gulonate reductase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DOGULNR">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DOGULNR" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-703" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.130" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02637" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97688" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21924" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21925" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21926" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21927" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3575" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_23doguln_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadh_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3dhguln_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nad_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_BETALDHx" metaid="R_BETALDHx" name="Betaine-aldehyde dehydrogenase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_BETALDHx">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/BETALDHx" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:BADH-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.2.1.8" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02565" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96237" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15305" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15306" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15307" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15308" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0312" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_betald_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nad_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glyb_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadh_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_BETALDHy" metaid="R_BETALDHy" name="Betaine-aldehyde dehydrogenase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_BETALDHy">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/BETALDHy" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.2.1.8" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02566" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96238" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30067" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30068" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30069" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30070" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0312" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_betald_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glyb_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadph_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MLTG3" metaid="R_MLTG3" name="Maltodextrin glucosidase (maltopentaose)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MLTG3">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MLTG3" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-14281" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.2.1.20" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.2.1.74" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101621" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0403" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_maltpt_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glc__D_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_maltttr_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DKGLCNR1" metaid="R_DKGLCNR1" name="2,5-diketo-D-gluconate reductase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DKGLCNR1">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DKGLCNR1" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97489" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b3012" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0207" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_25dkglcn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2dhguln_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NADTRHD" metaid="R_NADTRHD" name="NAD transhydrogenase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NADTRHD">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NADTRHD" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PYRNUTRANSHYDROGEN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.6.1.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.6.1.2" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.6.1.3" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00112" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101898" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11692" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11693" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11694" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11695" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3962" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nad_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadh_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FMNRx2" metaid="R_FMNRx2" name="FMN reductase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FMNRx2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FMNRx2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-12444" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.5.1.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.5.1.38" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.5.1.39" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R05706" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99597" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21624" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21625" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21626" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21627" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/50756" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/50757" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/50758" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/50759" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0937" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3844" />
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b2764" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2763" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fmn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fmnh2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ACPS1" metaid="R_ACPS1" name="Acyl-carrier protein synthase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ACPS1">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ACPS1" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.8.7" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95403" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2563" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3475" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_apoACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_coa_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pap_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_nmn_e" metaid="R_EX_nmn_e" name="NMN exchange" reversible="false" sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_nmn_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/nmn" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nmn_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_urea_e" metaid="R_EX_urea_e" name="Urea exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_urea_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/urea" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_urea_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GMPS2" metaid="R_GMPS2" name="GMP synthase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GMPS2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GMPS2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GMP-SYN-GLUT-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/6.3.5.2" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01231" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100384" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11680" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11681" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11682" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11683" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2507" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gln__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_xmp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_amp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glu__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gmp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_AMPN" metaid="R_AMPN" name="AMP nucleosidase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_AMPN">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/AMPN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.2.2.4" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95827" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1982" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_amp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ade_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_r5p_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GSNK" metaid="R_GSNK" name="Guanosine kinase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GSNK">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GSNK" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GUANOSINEKIN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.1.73" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01228" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100432" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27710" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27711" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27712" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27713" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0477" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gsn_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gmp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_f6p_e" metaid="R_EX_f6p_e" name="D-fructose 6-phosphate exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_f6p_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/f6p" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_f6p_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ADCS" metaid="R_ADCS" name="4-amino-4-deoxychorismate synthase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ADCS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ADCS" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PABASYN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.6.1.85" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01716" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95440" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11672" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11673" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11674" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11675" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b1812" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3360" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_chor_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gln__L_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_4adcho_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glu__L_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ADCL" metaid="R_ADCL" name="4-aminobenzoate synthase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ADCL">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ADCL" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ADCLY-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.1.3.38" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R05553" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95436" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16201" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16202" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16203" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16204" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1096" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4039" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_4adcho_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_4abz_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pyr_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DHAPT" metaid="R_DHAPT" name="Dihydroxyacetone phosphotransferase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DHAPT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DHAPT" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:2.7.1.121-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.1.121" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01012" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97364" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18381" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18382" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18383" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18384" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b2415" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1198" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1200" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2416" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1199" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dha_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pep_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dhap_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pyr_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_lac__D_e" metaid="R_EX_lac__D_e" name="D-lactate exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_lac__D_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/lac__D" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_lac__D_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_UMPK" metaid="R_UMPK" name="UMP kinase" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_UMPK">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/UMPK" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-12002" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.4.14" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.4.22" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.4.4" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00158" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105118" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24400" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24401" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24402" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24403" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0910" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0171" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ump_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_udp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_DDPGALA" metaid="R_DDPGALA" name="2-dehydro-3-deoxy-6-phosphogalactonate aldolase"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DDPGALA">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DDPGALA" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DEHYDDEOXPHOSGALACT-ALDOL-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.1.2.21" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.1.2.55" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01064" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97220" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24464" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24465" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24466" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24467" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4477" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2dh3dgal6p_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g3p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pyr_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DURIK1" metaid="R_DURIK1" name="Deoxyuridine kinase (ATP:Deoxyuridine)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DURIK1">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DURIK1" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DURIDKI-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.1.145" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.1.21" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02099" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97817" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28206" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28207" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28208" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28209" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1238" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_duri_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dump_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_UPPRT" metaid="R_UPPRT" name="Uracil phosphoribosyltransferase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_UPPRT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/UPPRT" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:URACIL-PRIBOSYLTRANS-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.4.2.9" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00966" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105142" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13017" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13018" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13019" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13020" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2498" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_prpp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ura_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ump_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CTPS2" metaid="R_CTPS2" name="CTP synthase (glutamine)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CTPS2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CTPS2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CTPSYN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/6.3.4.2" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00573" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96945" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/26426" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/26427" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/26428" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/26429" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2780" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gln__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_utp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ctp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glu__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NTD1" metaid="R_NTD1" name="5'-nucleotidase (dUMP)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NTD1">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NTD1" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-14143" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.89" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02102" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102028" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29355" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29356" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29357" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29358" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2291" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2744" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4374" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2361" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dump_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_duri_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NTD7" metaid="R_NTD7" name="5'-nucleotidase (AMP)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NTD7">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NTD7" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:AMP-DEPHOSPHORYLATION-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00183" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102037" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29375" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29376" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29377" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29378" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b3399" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2744" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2361" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0675" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_amp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PAPPT3" metaid="R_PAPPT3"
-      name="Phospho-N-acetylmuramoyl-pentapeptide-transferase (meso-2,6-diaminopimelate)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PAPPT3">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PAPPT3" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.8.13" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102373" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0087" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_udcpp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ugmda_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_uagmda_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ump_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_UAGPT3" metaid="R_UAGPT3"
-      name="UDP-N-acetylglucosamine-N-acetylmuramyl-(pentapeptide)pyrophosphoryl-undecaprenol N-acetylglucosamine transferase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_UAGPT3">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/UAGPT3" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.4.1.227" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105037" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0090" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_uacgam_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_uagmda_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_uaagmda_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_udp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_ttdcea_e" metaid="R_EX_ttdcea_e" name="Tetradecenoate (n-C14:1) exchange"
-      reversible="false" sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_ttdcea_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ttdcea" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ttdcea_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_F6PA" metaid="R_F6PA" name="Fructose 6-phosphate aldolase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_F6PA">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/F6PA" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-313" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.1.2.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99075" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28002" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28003" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28004" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28005" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0825" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3946" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_f6p_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dha_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g3p_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_AGMHE" metaid="R_AGMHE" name="ADP-D-glycero-D-manno-heptose epimerase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_AGMHE">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/AGMHE" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:5.1.3.20-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/5.1.3.20" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R05176" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95551" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17577" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17578" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17579" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17580" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3619" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_adphep_DD_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adphep_LD_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GMHEPAT" metaid="R_GMHEPAT" name="D-glycero-D-manno-hepose 1-phosphate adenyltransferase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GMHEPAT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GMHEPAT" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-4342" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.7.70" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R05644" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100378" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27465" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27466" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27467" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27468" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3052" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gmhep1p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adphep_DD_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_h2s_e" metaid="R_EX_h2s_e" name="Hydrogen sulfide exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_h2s_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/h2s" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2s_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_gthrd_e" metaid="R_EX_gthrd_e" name="Reduced glutathione exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_gthrd_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/gthrd" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gthrd_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_IDOND" metaid="R_IDOND" name="L-idonate 5-dehydrogenase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_IDOND">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/IDOND" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-12107" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.264" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.366" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R05683" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100801" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21172" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21173" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21174" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21175" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4267" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_5dglcn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadh_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_idon__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nad_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_IDOND2" metaid="R_IDOND2" name="L-indonate 5-dehydrogenase (NADP)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_IDOND2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/IDOND2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:L-IDONATE-2-DEHYDROGENASE-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.264" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R05684" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100802" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21176" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21177" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21178" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21179" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4267" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_5dglcn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_idon__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GLYCLTDx" metaid="R_GLYCLTDx" name="Glycolate dehydrogenase (NAD)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLYCLTDx">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLYCLTDx" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLYCOLATE-REDUCTASE-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.26" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.29" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.79" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00717" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100331" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18229" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18230" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18231" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18232" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b3553" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1033" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glx_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadh_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glyclt_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nad_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_HPYRRy" metaid="R_HPYRRy" name="Hydroxypyruvate reductase (NADPH)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_HPYRRy">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/HPYRRy" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-300" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.79" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.81" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01392" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100336" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18657" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18658" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18659" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18660" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1033" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3553" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_hpyr_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glyc__R_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ACODA" metaid="R_ACODA" name="Acetylornithine deacetylase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ACODA">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ACODA" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ACETYLORNDEACET-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.5.1.14" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.5.1.16" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00669" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95377" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15941" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15942" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15943" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15944" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3957" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_acorn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ac_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_orn_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ADA" metaid="R_ADA" name="Adenosine deaminase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ADA">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ADA" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ADENODEAMIN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.5.4.4" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01560" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95432" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24408" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24409" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24410" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24411" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1623" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_adn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ins_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nh4_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DADA" metaid="R_DADA" name="Deoxyadenosine deaminase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DADA">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DADA" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ADDALT-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.5.4.4" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02556" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97076" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28190" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28191" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28192" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28193" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1623" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dad_2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_din_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nh4_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ADD" metaid="R_ADD" name="Adenine deaminase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ADD">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ADD" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ADENINE-DEAMINASE-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.5.4.2" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01244" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95443" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23688" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23689" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23690" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23691" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3665" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ade_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_hxan_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nh4_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ADSS" metaid="R_ADSS" name="Adenylosuccinate synthase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ADSS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ADSS" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ADENYLOSUCCINATE-SYNTHASE-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/6.3.4.4" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01135" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95495" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15753" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15754" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15755" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15756" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4177" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_asp__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gtp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_imp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dcamp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gdp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_AGDC" metaid="R_AGDC" name="N-acetylglucosamine-6-phosphate deacetylase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_AGDC">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/AGDC" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:NAG6PDEACET-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.5.1.25" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02059" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95528" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22936" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22937" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22938" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22939" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0677" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_acgam6p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ac_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gam6p_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ASNN" metaid="R_ASNN" name="L-asparaginase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ASNN">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ASNN" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ASPARAGHYD-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.5.1.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.5.1.38" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.5.5.4" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00485" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96056" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21016" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21017" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21018" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21019" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1767" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0828" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_asn__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_asp__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nh4_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ASNS2" metaid="R_ASNS2" name="Asparagine synthetase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ASNS2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ASNS2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ASNSYNA-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/6.3.1.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/6.3.5.4" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00483" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96060" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11372" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11373" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11374" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11375" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b3744" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0674" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_asp__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nh4_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_amp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_asn__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ASPCT" metaid="R_ASPCT" name="Aspartate carbamoyltransferase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ASPCT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ASPCT" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ASPCARBTRANS-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.1.3.2" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01397" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96080" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20013" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20014" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20015" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20016" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b4244" />
-              <fbc:geneProductRef fbc:geneProduct="G_b4245" />
-            </fbc:and>
-            <fbc:geneProductRef fbc:geneProduct="G_b4245" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_asp__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cbp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cbasp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DMPPS" metaid="R_DMPPS"
-      name="1-hydroxy-2-methyl-2-(E)-butenyl 4-diphosphate reductase (dmpp)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DMPPS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DMPPS" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.17.1.2" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97524" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0029" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2mb4p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadh_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dmpp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nad_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_MCOATA" metaid="R_MCOATA" name="Malonyl-CoA-ACP transacylase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MCOATA">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MCOATA" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:MALONYL-COA-ACP-TRANSACYL-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.0" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.39" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.85" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.86" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01626" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101421" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b1094" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1092" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_malcoa_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_coa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_malACP_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_IPDPS" metaid="R_IPDPS"
-      name="1-hydroxy-2-methyl-2-(E)-butenyl 4-diphosphate reductase (ipdp)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_IPDPS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/IPDPS" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.17.1.2" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100874" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0029" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2mb4p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadh_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ipdp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nad_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_DAPE" metaid="R_DAPE" name="Diaminopimelate epimerase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DAPE">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DAPE" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DIAMINOPIMEPIM-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/5.1.1.7" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02735" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97143" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15393" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15394" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15395" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15396" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3809" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_26dap_LL_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_26dap__M_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DHDPRy" metaid="R_DHDPRy" name="Dihydrodipicolinate reductase (NADPH)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DHDPRy">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DHDPRy" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.3.1.26" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97393" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0031" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_23dhdp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_thdp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_HSK" metaid="R_HSK" name="Homoserine kinase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_HSK">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/HSK" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:HOMOSERKIN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.1.39" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01771" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100737" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13985" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13986" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13987" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13988" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0003" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_hom__L_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_phom_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_SDPTA" metaid="R_SDPTA" name="Succinyldiaminopimelate transaminase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_SDPTA">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/SDPTA" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:SUCCINYLDIAMINOPIMTRANS-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.6.1.17" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R04475" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104301" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11960" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11961" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11962" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11963" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2662" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1302" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3359" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1748" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0907" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_akg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_sl26da_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glu__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_sl2a6o_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_THRS" metaid="R_THRS" name="Threonine synthase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_THRS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/THRS" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:THRESYN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.3.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01466" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104846" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10840" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10841" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10842" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10843" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0004" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_phom_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_thr__L_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_HSST" metaid="R_HSST" name="Homoserine O-succinyltransferase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_HSST">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/HSST" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:HOMSUCTRAN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.46" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01777" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100741" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22008" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22009" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22010" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22011" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4013" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_hom__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_succoa_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_coa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_suchms_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PPNDH" metaid="R_PPNDH" name="Prephenate dehydratase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PPNDH">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PPNDH" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PREPHENATEDEHYDRAT-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.51" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.91" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01373" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103123" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2599" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pphn_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_phpyr_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DDPA" metaid="R_DDPA" name="3-deoxy-D-arabino-heptulosonate 7-phosphate synthetase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DDPA">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DDPA" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DAHPSYN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.5.1.54" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01826" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97218" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14717" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14718" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14719" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14720" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0754" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2601" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1704" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_e4p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pep_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2dda7p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NMNDA" metaid="R_NMNDA" name="Nicotinamide-nucleotide amidase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NMNDA">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NMNDA" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:NMNAMIDOHYDRO-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.5.1.42" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02322" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101969" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12400" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12401" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12402" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12403" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2700" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nmn_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nh4_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nicrnt_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NNAM" metaid="R_NNAM" name="Nicotinamidase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NNAM">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NNAM" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:NICOTINAMID-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.5.1.19" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01268" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101977" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14545" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14546" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14547" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14548" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1768" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ncam_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nac_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nh4_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_P5CD" metaid="R_P5CD" name="1-pyrroline-5-carboxylate dehydrogenase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_P5CD">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/P5CD" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PYRROLINECARBDEHYDROG-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.2.1.88" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.5.1.12" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00707" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102301" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16417" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16418" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16419" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16420" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1014" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_1pyr5c_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nad_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glu__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadh_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_SPMDAT1" metaid="R_SPMDAT1" name="Spermidine acetyltransferase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_SPMDAT1">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/SPMDAT1" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:SPERMACTRAN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.57" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104491" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28150" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28151" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28152" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28153" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1584" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_accoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_spmd_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_N1aspmd_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_coa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_SPMDAT2" metaid="R_SPMDAT2" name="Spermidine acetyltransferase (N8)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_SPMDAT2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/SPMDAT2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-7165" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.57" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.6.1.29" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104492" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28270" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28271" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28272" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28273" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1584" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_accoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_spmd_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_coa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_n8aspmd_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_TDPADGAT" metaid="R_TDPADGAT" name="DTDP-4-amino-4,6-dideoxy-D-glucose acetyltransferase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_TDPADGAT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/TDPADGAT" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TDPFUCACTRANS-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.210" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R10142" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104757" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28763" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28764" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28765" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28766" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34443" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34444" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34445" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34446" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3790" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_accoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dtdp4addg_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_coa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dtdp4aaddg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MALS" metaid="R_MALS" name="Malate synthase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MALS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MALS" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:MALSYN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.3.9" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00472" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101347" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18181" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18182" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18183" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18184" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b4014" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2976" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_accoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glx_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_coa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_mal__L_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_TRE6PP" metaid="R_TRE6PP" name="Trehalose-phosphatase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_TRE6PP">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/TRE6PP" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TREHALOSEPHOSPHA-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.12" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02778" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R06228" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104926" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23420" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23421" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23422" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23423" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1897" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_tre6p_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_tre_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_met__D_e" metaid="R_EX_met__D_e" name="D-Methionine exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_met__D_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/met__D" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_met__D_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_tartr__L_e" metaid="R_EX_tartr__L_e" name="L-tartrate exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_tartr__L_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/tartr__L" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_tartr__L_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_taur_e" metaid="R_EX_taur_e" name="Taurine exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_taur_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/taur" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_taur_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_maltpt_e" metaid="R_EX_maltpt_e" name="Maltopentaose exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_maltpt_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/maltpt" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_maltpt_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_glcur_e" metaid="R_EX_glcur_e" name="D-Glucuronate exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_glcur_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/glcur" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glcur_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ADPRDP" metaid="R_ADPRDP" name="ADPribose diphosphatase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ADPRDP">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ADPRDP" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.13" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95480" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b3397" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3034" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_adprib_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_amp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_r5p_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ARAI" metaid="R_ARAI" name="L-arabinose isomerase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ARAI">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ARAI" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/5.3.1.4" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/5.3.1.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95922" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0062" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_arab__L_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_rbl__L_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_M1PD" metaid="R_M1PD" name="Mannitol-1-phosphate 5-dehydrogenase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_M1PD">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/M1PD" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:MANNPDEHYDROG-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.17" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02703" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101311" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19661" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19662" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19663" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19664" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3600" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mnl1p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nad_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_f6p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadh_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_G3PD2" metaid="R_G3PD2" name="Glycerol-3-phosphate dehydrogenase (NADP)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_G3PD2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/G3PD2" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.94" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00844" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99877" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11096" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11097" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11098" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11099" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3608" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glyc3p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dhap_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadph_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GALS3" metaid="R_GALS3" name="A-galactosidase (melibiose)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GALS3">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GALS3" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ALPHAGALACTOSID-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.2.1.20" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.2.1.22" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01101" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R06091" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97317" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4119" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_melib_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gal_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glc__D_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_FCI" metaid="R_FCI" name="L-fucose isomerase" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FCI">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FCI" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/5.3.1.3" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99468" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2802" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fuc__L_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fcl__L_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FCLK" metaid="R_FCLK" name="L-fuculokinase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FCLK">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FCLK" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:FUCULOKIN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.1.51" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R03241" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99469" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12376" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12377" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12378" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12379" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2803" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fcl__L_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fc1p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_FCLPA" metaid="R_FCLPA" name="L-fuculose 1-phosphate aldolase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FCLPA">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FCLPA" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:FUCPALDOL-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.1.2.17" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02262" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99470" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12933" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12934" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12935" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12936" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2738" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2800" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fc1p_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dhap_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_lald__L_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ACCOAL" metaid="R_ACCOAL" name="Acetate-CoA ligase (ADP-forming)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ACCOAL">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ACCOAL" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/6.2.1.13" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95221" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b4069" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0335" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_coa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ppa_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppcoa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GALUi" metaid="R_GALUi" name="UTP-glucose-1-phosphate uridylyltransferase (irreversible)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GALUi">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GALUi" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLUC1PURIDYLTRANS-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.7.64" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.7.9" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00289" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100022" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19889" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19890" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19891" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19892" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1236" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_g1p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_utp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_udpg_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_U23GAAT" metaid="R_U23GAAT" name="UDP-3-O-(3-hydroxymyristoyl)glucosamine acyltransferase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_U23GAAT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/U23GAAT" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:UDPHYDROXYMYRGLUCOSAMNACETYLTRANS-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.191" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R04550" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105007" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0179" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3hmrsACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_u3hga_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_u23ga_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_UAAGDS" metaid="R_UAAGDS"
-      name="UDP-N-acetylmuramoyl-L-alanyl-D-glutamyl-meso-2,6-diaminopimelate synthetase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_UAAGDS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/UAAGDS" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/6.3.2.13" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105013" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0085" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_26dap__M_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_uamag_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ugmd_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_UAMAS" metaid="R_UAMAS" name="UDP-N-acetylmuramoyl-L-alanine synthetase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_UAMAS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/UAMAS" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:UDP-NACMUR-ALA-LIG-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/6.3.2.8" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R03193" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105039" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23372" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23373" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23374" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23375" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0091" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ala__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_uamr_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_uama_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_UAMAGS" metaid="R_UAMAGS" name="UDP-N-acetylmuramoyl-L-alanyl-D-glutamate synthetase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_UAMAGS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/UAMAGS" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:UDP-NACMURALA-GLU-LIG-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/6.3.2.9" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02783" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105038" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16429" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16430" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16431" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16432" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0088" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glu__D_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_uama_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_uamag_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_UGLYCH" metaid="R_UGLYCH" name="Ureidoglycolate hydrolase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_UGLYCH">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/UGLYCH" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:UREIDOGLYCOLATE-HYDROLASE-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.5.1.116" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.5.3.19" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00469" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105091" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19809" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19810" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19811" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19812" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0505" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_urdglyc_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glx_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nh4_c" stoichiometry="2" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_OP4ENH" metaid="R_OP4ENH" name="2-oxopent-4-enoate hydratase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_OP4ENH">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/OP4ENH" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.80" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02601" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102198" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0350" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_op4en_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_4h2opntn_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_HOPNTAL" metaid="R_HOPNTAL" name="4-hydroxy-2-oxopentanoate aldolase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_HOPNTAL">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/HOPNTAL" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.1.2.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.1.2.n4" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.1.3.39" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00750" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100679" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0352" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_4h2opntn_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_acald_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pyr_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_3HPPPNH" metaid="R_3HPPPNH" name="3-(3-hydroxy-phenyl)propionate hydroxylase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_3HPPPNH">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/3HPPPNH" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:MHPHYDROXY-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.14.13.127" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R06786" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94903" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24785" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24786" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24787" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24788" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0347" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3hpppn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadh_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_o2_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dhpppn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nad_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_AKGDH" metaid="R_AKGDH" name="2-Oxogluterate dehydrogenase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_AKGDH">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/AKGDH" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:2OXOGLUTARATEDEH-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.2.1.52" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.2.4.2" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.8.1.4" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.61" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R08549" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95655" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27786" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27787" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27788" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27789" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b0116" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0727" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0726" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_akg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_coa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nad_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadh_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_succoa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_HPYRRx" metaid="R_HPYRRx" name="Hydroxypyruvate reductase (NADH)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_HPYRRx">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/HPYRRx" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLYCERATE-DEHYDROGENASE-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.26" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.29" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.81" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01388" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100325" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17905" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17906" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17907" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17908" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1033" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3553" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_hpyr_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadh_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glyc__R_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nad_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GLYCDx" metaid="R_GLYCDx" name="Glycerol dehydrogenase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLYCDx">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLYCDx" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLYCDEH-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.6" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01034" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100326" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13769" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13770" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13771" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13772" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3945" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glyc_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nad_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dha_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadh_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ASP1DC" metaid="R_ASP1DC" name="Aspartate 1-decarboxylase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ASP1DC">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ASP1DC" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ASPDECARBOX-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.1.1.11" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.1.1.15" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00489" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96077" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19497" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19498" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19499" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19500" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0131" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_asp__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ala_B_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_UGMDDS" metaid="R_UGMDDS"
-      name="UDP-N-acetylmuramoyl-L-alanyl-D-glutamyl-meso-2,6-diaminopimeloyl-D-alanyl-D-alanine synthetase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_UGMDDS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/UGMDDS" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/6.3.2.10" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105094" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0086" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_alaala_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ugmd_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ugmda_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_UHGADA" metaid="R_UHGADA" name="UDP-3-O-acetylglucosamine deacetylase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_UHGADA">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/UHGADA" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:UDPACYLGLCNACDEACETYL-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.5.1.108" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R04587" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105110" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25209" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25210" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25211" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25212" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0096" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_u3aga_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ac_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_u3hga_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_UAGAAT" metaid="R_UAGAAT" name="UDP-N-acetylglucosamine acyltransferase"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_UAGAAT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/UAGAAT" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:UDPNACETYLGLUCOSAMACYLTRANS-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.129" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R04567" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105028" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b1094" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0181" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3hmrsACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_uacgam_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_u3aga_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ATPPRT" metaid="R_ATPPRT" name="ATP phosphoribosyltransferase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ATPPRT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ATPPRT" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ATPPHOSPHORIBOSYLTRANS-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.4.2.17" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01071" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96132" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18473" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18474" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18475" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18476" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2019" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_prpp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_prbatp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_HISTD" metaid="R_HISTD" name="Histidinol dehydrogenase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_HISTD">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/HISTD" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-8001" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.23" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01158" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100587" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20641" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20642" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20643" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20644" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2020" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_histd_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nad_c" stoichiometry="2" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="3" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_his__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadh_c" stoichiometry="2" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_IGPDH" metaid="R_IGPDH" name="Imidazoleglycerol-phosphate dehydratase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_IGPDH">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/IGPDH" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:IMIDPHOSDEHYD-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.19" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R03457" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100813" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11040" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11041" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11042" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11043" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2022" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_eig3p_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_imacp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_PRPPS" metaid="R_PRPPS" name="Phosphoribosylpyrophosphate synthetase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PRPPS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PRPPS" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.6.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103215" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1207" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_r5p_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_amp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_prpp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PRATPP" metaid="R_PRATPP" name="Phosphoribosyl-ATP pyrophosphatase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PRATPP">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PRATPP" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:HISTPRATPHYD-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.31" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R04035" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103155" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22828" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22829" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22830" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22831" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2026" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_prbatp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_prbamp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_PRMICI" metaid="R_PRMICI"
-      name="1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino)imidazole-4-carboxamide isomerase" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PRMICI">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PRMICI" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PRIBFAICARPISOM-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/5.3.1.16" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R04640" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103169" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15469" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15470" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15471" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15472" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2024" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_prfp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_prlp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_SERAT" metaid="R_SERAT" name="Serine O-acetyltransferase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_SERAT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/SERAT" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:SERINE-O-ACETTRAN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.30" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00586" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104275" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24560" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24561" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24562" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24563" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3607" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_accoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ser__L_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_acser_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_coa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CYSS" metaid="R_CYSS" name="Cysteine synthase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CYSS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CYSS" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ACSERLY-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.5.1.47" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.5.1.65" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00897" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97007" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14829" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14830" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14831" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14832" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2421" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2414" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_acser_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2s_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ac_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cys__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_BPNT" metaid="R_BPNT" name="3',5'-bisphosphate nucleotidase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_BPNT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/BPNT" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:325-BISPHOSPHATE-NUCLEOTIDASE-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.7" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.97" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00188" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96321" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10040" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10041" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10042" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10043" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4214" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pap_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_amp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PAPSR" metaid="R_PAPSR" name="Phosphoadenylyl-sulfate reductase (thioredoxin)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PAPSR">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PAPSR" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:1.8.4.8-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.8.4.8" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02021" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102376" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b2582" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2762" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b3781" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2762" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_paps_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_trdrd_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pap_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_so3_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_trdox_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ASPK" metaid="R_ASPK" name="Aspartate kinase" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ASPK">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ASPK" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ASPARTATEKIN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.2.4" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00480" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96085" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23776" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23777" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23778" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23779" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b3940" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0002" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4024" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_asp__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_4pasp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ASAD" metaid="R_ASAD" name="Aspartate-semialdehyde dehydrogenase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ASAD">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ASAD" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ASPARTATE-SEMIALDEHYDE-DEHYDROGENASE-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.2.1.11" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02291" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96039" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24284" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24285" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24286" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24287" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3433" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_aspsa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pi_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_4pasp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadph_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DAPDC" metaid="R_DAPDC" name="Diaminopimelate decarboxylase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DAPDC">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DAPDC" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DIAMINOPIMDECARB-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.1.1.20" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00451" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97141" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15101" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15102" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15103" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15104" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2838" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_26dap__M_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_lys__L_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_mmet_e" metaid="R_EX_mmet_e" name="S-Methyl-L-methionine exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_mmet_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/mmet" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mmet_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_METAT" metaid="R_METAT" name="Methionine adenosyltransferase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_METAT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/METAT" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:S-ADENMETSYN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.5.1.6" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00177" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101407" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21080" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21081" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21082" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21083" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2942" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_met__L_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_amet_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ASCBPL" metaid="R_ASCBPL" name="L-ascorbate 6-phosphate lactonase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ASCBPL">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ASCBPL" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-5214" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.1.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R07677" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96045" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28803" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28804" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28805" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28806" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4192" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ascb6p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3dhgulnp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ACBIPGT" metaid="R_ACBIPGT" name="Adenosyl cobinamide phosphate guanyltransferase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ACBIPGT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ACBIPGT" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:COBINPGUANYLYLTRANS-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.7.62" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R05222" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95216" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22712" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22713" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22714" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22715" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1993" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_adocbip_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gtp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_agdpcbi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ADOCBLS" metaid="R_ADOCBLS" name="Adenosylcobalamin 5'-phosphate synthase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ADOCBLS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ADOCBLS" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:COBALAMINSYN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.8.26" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R05223" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95469" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1992" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_agdpcbi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_rdmbzi_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adocbl_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gmp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ADOCBIK" metaid="R_ADOCBIK" name="Adenosyl cobinamide kinase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ADOCBIK">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ADOCBIK" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:COBINAMIDEKIN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.1.156" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R05221" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95465" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1993" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_adocbi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adocbip_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_TMPK" metaid="R_TMPK" name="Thiamine-phosphate kinase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_TMPK">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/TMPK" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:THI-P-KIN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.4.16" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00617" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104907" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15913" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15914" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15915" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15916" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0417" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_thmmp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_thmpp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_HPPPNDO" metaid="R_HPPPNDO" name="2,3-dihydroxypheylpropionate 1,2-dioxygenase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_HPPPNDO">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/HPPPNDO" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:1.13.11.16-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.13.11.16" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R04376" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100695" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23840" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23841" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23842" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23843" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0348" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dhpppn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_o2_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_hkndd_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DHCINDO" metaid="R_DHCINDO" name="2,3-dihydroxycinnamate 1,2-dioxygenase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DHCINDO">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DHCINDO" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.13.11.16" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R06788" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97379" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0348" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dhcinnm_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_o2_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_hkntd_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_HKNDDH" metaid="R_HKNDDH" name="2-hydroxy-6-ketonona-2,4-dienedioic acid hydrolase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_HKNDDH">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/HKNDDH" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:MHPCHYDROL-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.7.1.14" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02603" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100654" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24789" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24790" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24791" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24792" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34187" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34188" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34189" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34190" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0349" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_hkndd_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_op4en_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_succ_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_HKNTDH" metaid="R_HKNTDH" name="2-hydroxy-6-ketononotrienedioate hydrolase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_HKNTDH">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/HKNTDH" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.7.1.14" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R06789" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100655" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25046" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25047" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25048" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25049" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0349" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_hkntd_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fum_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_op4en_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GLYCK2" metaid="R_GLYCK2" name="Glycerate kinase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLYCK2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLYCK2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GKI-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.1.165" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.1.31" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R08572" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100329" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27377" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27378" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27379" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27380" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3124" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glyc__R_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2pg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ENTCS" metaid="R_ENTCS" name="Enterochelin synthase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ENTCS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ENTCS" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97933" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28566" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28567" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28568" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28569" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0583" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_23dhba_c" stoichiometry="3" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_seramp_c" stoichiometry="3" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_amp_c" stoichiometry="6" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_enter_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="9" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_SULR" metaid="R_SULR" name="Sulfite reductase (NADPH2)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_SULR">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/SULR" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:SULFITE-REDUCT-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.8.1.2" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00858" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104650" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13801" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13802" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13803" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13804" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b2764" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2763" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="5" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="3" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_so3_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="3" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2s_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="3" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MANPGH" metaid="R_MANPGH" name="2-O-alpha-mannosyl-6-phosphate-D-glycerate hydrolase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MANPGH">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MANPGH" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-5216" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.2.1.170" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R09645" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101397" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0732" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_man6pglyc_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glyc__R_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_man6p_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_URDGLYCD" metaid="R_URDGLYCD" name="Ureidoglycolate dehydrogenase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_URDGLYCD">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/URDGLYCD" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-7024" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.154" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.350" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02935" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105152" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15329" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15330" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15331" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15332" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0517" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nad_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_urdglyc_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadh_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_oxur_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_CBMKr" metaid="R_CBMKr" name="Carbamate kinase" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CBMKr">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CBMKr" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CARBAMATE-KINASE-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.2.2" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00150" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96482" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10152" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10153" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10154" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10155" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0521" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_co2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nh4_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cbp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_AMANAPEr" metaid="R_AMANAPEr" name="N-acetylmannosamine 6-phosphate epimerase"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_AMANAPEr">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/AMANAPEr" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:NANE-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/5.1.3.9" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02087" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95804" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25257" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25258" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25259" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25260" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3223" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_acmanap_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_acgam6p_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ACM6PH" metaid="R_ACM6PH" name="N-acetylmuramate 6-phosphate hydrolase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ACM6PH">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ACM6PH" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.126" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R08555" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95273" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/26410" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/26411" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/26412" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/26413" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2428" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_acmum6p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_acgam6p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_lac__D_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_NNATr" metaid="R_NNATr" name="Nicotinate-nucleotide adenylyltransferase"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NNATr">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NNATr" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:NICONUCADENYLYLTRAN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.7.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.7.18" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R03005" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101978" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22860" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22861" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22862" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22863" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0639" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nicrnt_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dnad_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CYTDH" metaid="R_CYTDH" name="Cytidine hydrolase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CYTDH">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CYTDH" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-361" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.2.2.3" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.2.2.8" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02137" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97040" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27958" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27959" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27960" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27961" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0651" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2162" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0030" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cytd_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_csn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_rib__D_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PSERT" metaid="R_PSERT" name="Phosphoserine transaminase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PSERT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PSERT" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PSERTRANSAM-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.6.1.52" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R04173" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103225" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14329" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14330" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14331" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14332" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0907" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3php_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glu__L_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_akg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pser__L_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_AIRC2" metaid="R_AIRC2" name="Phosphoribosylaminoimidazole carboxylase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_AIRC2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/AIRC2" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/6.3.4.18" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95644" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19317" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19318" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19319" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19320" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0522" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_air_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_hco3_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_5caiz_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_GAPD" metaid="R_GAPD" name="Glyceraldehyde-3-phosphate dehydrogenase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GAPD">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GAPD" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GAPOXNPHOSPHN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.2.1.12" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.2.1.59" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01061" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100040" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10300" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10301" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10302" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10303" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1779" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_g3p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nad_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pi_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_13dpg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadh_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_HEX1" metaid="R_HEX1" name="Hexokinase (D-glucose:ATP)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_HEX1">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/HEX1" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLUCOKIN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.1.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.1.2" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00299" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100612" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17825" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17826" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17827" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17828" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2388" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glc__D_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g6p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GND" metaid="R_GND" name="Phosphogluconate dehydrogenase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GND">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GND" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-9952" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.351" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.44" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01528" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100389" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10116" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10117" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10118" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10119" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2029" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_6pgc_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadph_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ru5p__D_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_TAUDO" metaid="R_TAUDO" name="Taurine dioxygenase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_TAUDO">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/TAUDO" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-299" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.14.11.17" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R05320" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104730" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15909" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15910" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15911" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15912" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0368" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_akg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_o2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_taur_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_aacald_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_so3_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_succ_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DM_amob_c" metaid="R_DM_amob_c"
-      name="Sink needed to allow S-Adenosyl-4-methylthio-2-oxobutanoate to leave system" reversible="false" sboTerm="SBO:0000628">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DM_amob_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/amob" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_amob_c" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ME2" metaid="R_ME2" name="Malic enzyme (NADP)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ME2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ME2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:MALIC-NADP-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.40" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00216" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101443" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18253" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18254" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18255" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18256" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2463" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mal__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadph_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pyr_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ARGSL" metaid="R_ARGSL" name="Argininosuccinate lyase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ARGSL">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ARGSL" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ARGSUCCINLYA-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.3.2.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01086" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95948" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24020" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24021" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24022" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24023" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3960" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_argsuc_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_arg__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fum_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CBPS" metaid="R_CBPS" name="Carbamoyl-phosphate synthase (glutamine-hydrolysing)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CBPS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CBPS" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CARBPSYN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/6.3.5.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00575" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96485" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18633" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18634" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18635" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18636" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b0032" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0033" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gln__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_hco3_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cbp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glu__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GLU5K" metaid="R_GLU5K" name="Glutamate 5-kinase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLU5K">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLU5K" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLUTKIN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.2.11" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00239" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100277" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14877" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14878" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14879" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14880" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0242" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glu__L_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glu5p_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_IPPS" metaid="R_IPPS" name="2-isopropylmalate synthase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_IPPS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/IPPS" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:2-ISOPROPYLMALATESYN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.3.13" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01213" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100879" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21524" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21525" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21526" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21527" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0074" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3mob_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_accoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3c3hmp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_coa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_EX_mg2_e" metaid="R_EX_mg2_e" name="Mg exchange" reversible="true"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_mg2_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/mg2" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mg2_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ACOATA" metaid="R_ACOATA" name="Acetyl-CoA ACP transacylase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ACOATA">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ACOATA" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ACP-S-ACETYLTRANSFER-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.179" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.180" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.38" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.41" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.85" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.86" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01624" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95376" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b1094" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1091" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_accoa_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_acACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_coa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MLTG2" metaid="R_MLTG2" name="Maltodextrin glucosidase (maltotetraose)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MLTG2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MLTG2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:MALTET-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101620" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0403" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_maltttr_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glc__D_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_malttr_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MLTG1" metaid="R_MLTG1" name="Maltodextrin glucosidase (maltotriose)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MLTG1">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MLTG1" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-5183" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.2.1.20" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101619" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0403" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_malttr_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glc__D_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_malt_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_AMALT3" metaid="R_AMALT3" name="Amylomaltase (maltopentaose)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_AMALT3">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/AMALT3" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-14261" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.4.1.25" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95802" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3416" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_malt_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_maltpt_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glc__D_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_malthx_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_MLTP3" metaid="R_MLTP3" name="Maltodextrin phosphorylase (maltoheptaose)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MLTP3">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MLTP3" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-14286" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.4.1.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101634" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3417" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_malthp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pi_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g1p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_malthx_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_SPODM" metaid="R_SPODM" name="Superoxide dismutase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_SPODM">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/SPODM" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:SUPEROX-DISMUT-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.15.1.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00275" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104498" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20696" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20697" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20698" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20699" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b3908" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1656" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_o2s_c" stoichiometry="2" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_o2_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_AHCYSNS" metaid="R_AHCYSNS" name="S-adenosylhomocysteine nucleosidase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_AHCYSNS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/AHCYSNS" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ADENOSYLHOMOCYSTEINE-NUCLEOSIDASE-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.2.2.9" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00194" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95625" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17805" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17806" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17807" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17808" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0159" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ahcys_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ade_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_rhcys_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_TMK" metaid="R_TMK" name="Thiamine kinase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_TMK">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/TMK" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:THIKIN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.1.89" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02134" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104898" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12012" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12013" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12014" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12015" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1106" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_thm_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_thmmp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NTPP4" metaid="R_NTPP4" name="Nucleoside triphosphate pyrophosphorylase (ctp)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NTPP4">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NTPP4" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-383" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.65" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.8" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.9" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00515" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102053" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27762" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27763" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27764" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27765" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1759" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2781" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ctp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cmp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NTPP3" metaid="R_NTPP3" name="Nucleoside triphosphate pyrophosphorylase (dctp)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NTPP3">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NTPP3" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DCTP-PYROPHOSPHATASE-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.12" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.65" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.9" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01668" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97203" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22636" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22637" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22638" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22639" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2781" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2251" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1759" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dctp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dcmp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NTPP6" metaid="R_NTPP6" name="Nucleoside triphosphate pyrophosphorylase (atp)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NTPP6">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NTPP6" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ATP-PYROPHOSPHATASE-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.8" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.9" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00087" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102054" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14245" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14246" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14247" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14248" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2781" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0905" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_amp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NTPP7" metaid="R_NTPP7" name="Nucleoside triphosphate pyrophosphorylase (dttp)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NTPP7">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NTPP7" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-5107" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.19" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.9" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R11323" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97809" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28534" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28535" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28536" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28537" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2251" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2781" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3248" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dttp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dtmp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NTPP8" metaid="R_NTPP8" name="Nucleoside triphosphate pyrophosphorylase (utp)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NTPP8">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NTPP8" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-14139" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.8" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.9" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00662" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102055" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29395" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29396" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29397" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29398" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2781" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3248" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_utp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ump_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_P5CR" metaid="R_P5CR" name="Pyrroline-5-carboxylate reductase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_P5CR">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/P5CR" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.5.1.2" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01251" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102302" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14109" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14110" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14111" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14112" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0386" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_1pyr5c_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pro__L_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CYANST" metaid="R_CYANST" name="Cyanide sulfurtransferase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CYANST">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CYANST" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:THIOSULFATE-SULFURTRANSFERASE-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.8.1.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01931" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96956" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16881" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16882" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16883" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16884" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2668" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3425" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2521" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cyan_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_tsul_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_so3_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_tcynt_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DHPPDA2" metaid="R_DHPPDA2"
-      name="Diaminohydroxyphosphoribosylaminopryrimidine deaminase (25drapp)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DHPPDA2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DHPPDA2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RIBOFLAVINSYNDEAM-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.5.4.26" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R03459" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97435" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21868" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21869" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21870" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21871" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0414" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_25drapp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_5apru_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nh4_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_G5SADs" metaid="R_G5SADs" name="L-glutamate 5-semialdehyde dehydratase (spontaneous)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_G5SADs">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/G5SADs" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:SPONTPRO-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R03314" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99897" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28234" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28235" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28236" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28237" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_s0001" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glu5sa_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_1pyr5c_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GMAND" metaid="R_GMAND" name="GDP-D-mannose dehydratase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GMAND">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GMAND" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GDPMANDEHYDRA-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.47" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00888" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100377" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23820" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23821" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23822" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23823" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2053" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gdpmann_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gdpddman_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PPCSCT" metaid="R_PPCSCT" name="Propanoyl-CoA: succinate CoA-transferase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PPCSCT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PPCSCT" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.8.3.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103103" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2920" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ppcoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_succ_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_succoa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CYTD" metaid="R_CYTD" name="Cytidine deaminase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CYTD">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CYTD" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CYTIDEAM2-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.5.4.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01878" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97039" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16069" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16070" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16071" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16072" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2143" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cytd_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nh4_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_uri_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DCYTD" metaid="R_DCYTD" name="Deoxycytidine deaminase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DCYTD">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DCYTD" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CYTIDEAM-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.5.4.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02485" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97207" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13433" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13434" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13435" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13436" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2143" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dcyt_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_duri_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nh4_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DBTS" metaid="R_DBTS" name="Dethiobiotin synthase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DBTS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DBTS" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DETHIOBIOTIN-SYN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/6.3.3.3" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R03182" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97180" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15805" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15806" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15807" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15808" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0778" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_co2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dann_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dtbt_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="3" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DCTPD" metaid="R_DCTPD" name="DCTP deaminase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DCTPD">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DCTPD" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DCTP-DEAM-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.5.4.13" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02325" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97201" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22680" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22681" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22682" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22683" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2065" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dctp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dutp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nh4_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DHDPS" metaid="R_DHDPS" name="Dihydrodipicolinate synthase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DHDPS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DHDPS" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97394" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2478" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_aspsa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pyr_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_23dhdp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_G1PACT" metaid="R_G1PACT" name="Glucosamine-1-phosphate N-acetyltransferase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_G1PACT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/G1PACT" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.157" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.4" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99841" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3730" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_accoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gam1p_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_acgam1p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_coa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GART" metaid="R_GART" name="GAR transformylase-T" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GART">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GART" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GARTRANSFORMYL2-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.1.2.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R06974" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100042" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24829" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24830" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24831" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24832" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1849" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_for_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gar_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fgam_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CSND" metaid="R_CSND" name="Cytosine deaminase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CSND">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CSND" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CYTDEAM-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.5.4.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00974" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96927" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20605" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20606" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20607" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20608" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0337" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_csn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nh4_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ura_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GF6PTA" metaid="R_GF6PTA" name="Glutamine-fructose-6-phosphate transaminase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GF6PTA">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GF6PTA" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:L-GLN-FRUCT-6-P-AMINOTRANS-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.6.1.16" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100107" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3729" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_f6p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gln__L_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gam6p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glu__L_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_H2SO" metaid="R_H2SO" name="Hydrogen sulfide oxidation" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_H2SO">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/H2SO" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100493" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2s_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_o2_c" stoichiometry="2" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_so4_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GLUCYS" metaid="R_GLUCYS" name="Gamma-glutamylcysteine synthetase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLUCYS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLUCYS" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLUTCYSLIG-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/6.3.2.2" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00894" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100074" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13285" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13286" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13287" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13288" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2688" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cys__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glu__L_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glucys_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GLUN" metaid="R_GLUN" name="Glutaminase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLUN">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLUN" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLUTAMIN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.4.1.13" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.4.7.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.5.1.2" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.5.1.38" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.3.3.6" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/6.3.4.2" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/6.3.5.2" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/6.3.5.4" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/6.3.5.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00256" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100030" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15889" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15890" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15891" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15892" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0485" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1524" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gln__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glu__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nh4_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GLUPRT" metaid="R_GLUPRT" name="Glutamine phosphoribosyldiphosphate amidotransferase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLUPRT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLUPRT" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PRPPAMIDOTRANS-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.4.2.14" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01072" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100287" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14905" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14906" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14907" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14908" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2312" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gln__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_prpp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glu__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pram_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GMPR" metaid="R_GMPR" name="GMP reductase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GMPR">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GMPR" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GMP-REDUCT-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.7.1.7" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01134" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100382" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17185" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17186" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17187" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17188" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0104" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gmp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_imp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nh4_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NADS1" metaid="R_NADS1" name="NAD synthase (nh3)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NADS1">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NADS1" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:NAD-SYNTH-NH3-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/6.3.1.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/6.3.5.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00189" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101897" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21188" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21189" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21190" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21191" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1740" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dnad_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nh4_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_amp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nad_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NTRIR2x" metaid="R_NTRIR2x" name="Nitrite Reductase (NADH)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NTRIR2x">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NTRIR2x" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-13854" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.7.1.15" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.7.1.4" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00787" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102062" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24628" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24629" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24630" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24631" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b3366" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3365" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="5" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadh_c" stoichiometry="3" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_no2_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nad_c" stoichiometry="3" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nh4_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_OCBT" metaid="R_OCBT" name="Ornithine carbamoyltransferase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_OCBT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/OCBT" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ORNCARBAMTRANSFER-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-13482" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.1.3.3" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01398" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102137" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19513" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19514" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19515" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19516" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b4254" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0273" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cbp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_orn_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_citr__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_GARFT" metaid="R_GARFT" name="Phosphoribosylglycinamide formyltransferase"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GARFT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GARFT" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.1.2.2" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R04325" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99623" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15053" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15054" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15055" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15056" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2500" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_10fthf_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gar_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fgam_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_thf_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GPDDA1" metaid="R_GPDDA1"
-      name="Glycerophosphodiester phosphodiesterase (Glycerophosphocholine)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GPDDA1">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GPDDA1" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:3.1.4.2-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.4.2" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.4.46" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01030" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100410" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16061" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16062" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16063" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16064" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3449" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_g3pc_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_chol_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glyc3p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GPDDA2" metaid="R_GPDDA2"
-      name="Glycerophosphodiester phosphodiesterase (Glycerophosphoethanolamine)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GPDDA2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GPDDA2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-14160" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.4.2" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.4.46" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01470" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100411" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29319" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29320" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29321" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29322" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3449" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_g3pe_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_etha_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glyc3p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_PHETA1" metaid="R_PHETA1" name="Phenylalanine transaminase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PHETA1">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PHETA1" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PHEAMINOTRANS-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-10814" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.6.1.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.6.1.42" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.6.1.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.6.1.57" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.6.1.58" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.6.1.9" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00694" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102631" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0928" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4054" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3770" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_akg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_phe__L_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glu__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_phpyr_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PPND" metaid="R_PPND" name="Prephenate dehydrogenase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PPND">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PPND" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PREPHENATEDEHYDROG-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.3.1.12" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01728" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103121" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13869" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13870" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13871" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13872" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2600" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nad_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pphn_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_34hpp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadh_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_TRPS1" metaid="R_TRPS1" name="Tryptophan synthase (indoleglycerol phosphate)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_TRPS1">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/TRPS1" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRYPSYN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.20" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02722" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104343" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10532" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10533" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10534" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10535" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b1260" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1261" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3ig3p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ser__L_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g3p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_trp__L_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PRAMPC" metaid="R_PRAMPC" name="Phosphoribosyl-AMP cyclohydrolase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PRAMPC">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PRAMPC" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:HISTCYCLOHYD-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.5.4.19" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R04037" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103154" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20049" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20050" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20051" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20052" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2026" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_prbamp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_prfp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_MCITL2" metaid="R_MCITL2" name="Methylisocitrate lyase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MCITL2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MCITL2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:METHYLISOCITRATE-LYASE-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.1.3.30" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00409" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101415" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16809" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16810" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16811" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16812" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0331" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_micit_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pyr_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_succ_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DXYLK" metaid="R_DXYLK" name="1-Deoxy-D-xylulose kinase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DXYLK">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DXYLK" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-382" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.1.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97832" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27990" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27991" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27992" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27993" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3564" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dxyl_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dxyl5p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MDH3" metaid="R_MDH3" name="Malate dehydrogenase (menaquinone 8 as acceptor)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MDH3">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MDH3" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101441" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29087" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29088" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29089" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29090" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2210" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mal__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mqn8_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_mql8_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_oaa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_SOTA" metaid="R_SOTA" name="Succinylornithine transaminase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_SOTA">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/SOTA" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:SUCCORNTRANSAM-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.6.1.81" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R04217" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104477" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16953" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16954" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16955" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16956" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1748" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_akg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_sucorn_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glu__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_sucgsa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_SGSAD" metaid="R_SGSAD" name="Succinylglutamic semialdehyde dehydrogenase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_SGSAD">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/SGSAD" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:SUCCGLUALDDEHYD-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.2.1.71" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R05049" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104368" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10812" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10813" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10814" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10815" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1746" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nad_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_sucgsa_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadh_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_sucglu_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PTA2" metaid="R_PTA2" name="Phosphate acetyltransferase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PTA2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PTA2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PTAALT-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.222" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.8" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00921" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102416" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28046" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28047" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28048" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28049" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2297" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ppcoa_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_coa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppap_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MDH2" metaid="R_MDH2" name="Malate dehydrogenase (ubiquinone 8 as acceptor)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MDH2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MDH2" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101440" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29083" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29084" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29085" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29086" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2210" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mal__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_q8_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_oaa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_q8h2_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ACOTA" metaid="R_ACOTA" name="Acetylornithine transaminase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ACOTA">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ACOTA" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ACETYLORNTRANSAM-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.6.1.11" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02283" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95388" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18049" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18050" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18051" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18052" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2662" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1748" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3359" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1302" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_acorn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_akg_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_acg5sa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glu__L_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GPDDA5" metaid="R_GPDDA5"
-      name="Glycerophosphodiester phosphodiesterase (Glycerophosphoinositol)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GPDDA5">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GPDDA5" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:3.1.4.44-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.4.44" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01193" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100414" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16501" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16502" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16503" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16504" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3449" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_g3pi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glyc3p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_inost_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PDX5PS" metaid="R_PDX5PS" name="Pyridoxine 5'-phosphate synthase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PDX5PS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PDX5PS" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102439" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b2564" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0052" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dxyl5p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nad_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_phthr_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadh_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pdx5p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PPBNGS" metaid="R_PPBNGS" name="Porphobilinogen synthase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PPBNGS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PPBNGS" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PORPHOBILSYNTH-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.24" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00036" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103095" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24064" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24065" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24066" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24067" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0369" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_5aop_c" stoichiometry="2" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppbng_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PPNCL2" metaid="R_PPNCL2" name="Phosphopantothenate-cysteine ligase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PPNCL2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PPNCL2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:P-PANTOCYSLIG-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/6.3.2.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R04231" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103119" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19397" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19398" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19399" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19400" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3639" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_4ppan_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ctp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cys__L_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_4ppcys_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cmp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_PRAGSr" metaid="R_PRAGSr" name="Phosphoribosylglycinamide synthase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PRAGSr">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PRAGSr" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLYRIBONUCSYN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/6.3.4.13" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R04144" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103139" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4005" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gly_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pram_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gar_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PRFGS" metaid="R_PRFGS" name="Phosphoribosylformylglycinamidine synthase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PRFGS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PRFGS" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/6.3.5.3" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103165" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17129" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17130" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17131" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17132" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2557" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fgam_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gln__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fpram_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glu__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_acac_e" metaid="R_EX_acac_e" name="Acetoacetate exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_acac_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/acac" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_acac_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ETHAAL" metaid="R_ETHAAL" name="Ethanolamine ammonia-lyase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ETHAAL">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ETHAAL" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ETHAMLY-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.3.1.7" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00749" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97968" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15313" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15314" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15315" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15316" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b2441" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2440" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_etha_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_acald_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nh4_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MAN1PT2" metaid="R_MAN1PT2" name="Mannose-1-phosphate guanylyltransferase (GDP)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MAN1PT2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MAN1PT2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:MANNPGUANYLTRANGDP-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.7.22" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00883" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101376" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12905" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12906" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12907" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12908" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2049" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gdp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_man1p_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gdpmann_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_AP4AH" metaid="R_AP4AH" name="Ap4A hydrolase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_AP4AH">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/AP4AH" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:3.6.1.41-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.41" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00125" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95856" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24252" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24253" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24254" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24255" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0049" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ap4a_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_AP5AH" metaid="R_AP5AH" name="Ap5A hydrolase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_AP5AH">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/AP5AH" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-10966" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.61" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R09880" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95859" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30527" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30528" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30529" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30530" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0049" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ap5a_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ADNCYC" metaid="R_ADNCYC" name="Adenylate cyclase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ADNCYC">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ADNCYC" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ADENYLATECYC-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.6.1.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00089" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95444" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15389" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15390" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15391" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15392" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3806" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_camp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MI1PP" metaid="R_MI1PP" name="Myo-inositol 1-phosphatase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MI1PP">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MI1PP" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-5408" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.25" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01185" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101570" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27670" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27671" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27672" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27673" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2533" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mi1p__D_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_inost_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MCITS" metaid="R_MCITS" name="2-methylcitrate synthase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MCITS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MCITS" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:2-METHYLCITRATE-SYNTHASE-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.3.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00931" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101417" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23780" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23781" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23782" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23783" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0333" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_oaa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ppcoa_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2mcit_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_coa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_PPAKr" metaid="R_PPAKr" name="Propionate kinase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PPAKr">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PPAKr" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.2.15" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95897" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3115" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ppap_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NTP3" metaid="R_NTP3" name="Nucleoside-triphosphatase (GTP)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NTP3">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NTP3" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-5462" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.15" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.5.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.5.2" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.5.3" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.5.4" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.5.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.5.6" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00335" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102043" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19669" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19670" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19671" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19672" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b3590" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2918" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4352" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4161" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2727" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2173" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4173" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gtp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gdp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_PPM2" metaid="R_PPM2" name="Phosphopentomutase 2 (deoxyribose)" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PPM2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PPM2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-PPENTOMUT-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/5.4.2.7" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02749" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103116" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25205" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25206" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25207" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25208" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27658" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27659" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27660" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27661" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4383" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2dr1p_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2dr5p_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MOAT2" metaid="R_MOAT2" name="3-deoxy-D-manno-octulosonic acid transferase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MOAT2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MOAT2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:KDOTRANS2-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.4.99.13" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R05074" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R06285" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101684" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28062" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28063" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28064" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28065" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3633" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ckdo_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_kdolipid4_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cmp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_kdo2lipid4_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_adn_e" metaid="R_EX_adn_e" name="Adenosine exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_adn_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/adn" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_adn_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_ins_e" metaid="R_EX_ins_e" name="Inosine exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_ins_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ins" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ins_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_G6PDH2r" metaid="R_G6PDH2r" name="Glucose 6-phosphate dehydrogenase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_G6PDH2r">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/G6PDH2r" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLU6PDEHYDROG-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.363" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.49" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00835" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99907" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15841" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15842" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15843" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15844" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1852" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_g6p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_6pgl_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadph_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NADH5" metaid="R_NADH5" name="NADH dehydrogenase (ubiquinone-8 )" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NADH5">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NADH5" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101872" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29107" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29108" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29109" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29110" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b3713" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1109" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0046" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1004" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadh_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_q8_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nad_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_q8h2_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MOHMT" metaid="R_MOHMT" name="3-methyl-2-oxobutanoate hydroxymethyltransferase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MOHMT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MOHMT" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.1.2.11" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01226" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101702" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11824" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11825" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11826" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11827" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0134" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3mob_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mlthf_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2dhp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_thf_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_glyc3p_e" metaid="R_EX_glyc3p_e" name="Glycerol 3-phosphate exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_glyc3p_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/glyc3p" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glyc3p_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_lcts_e" metaid="R_EX_lcts_e" name="Lactose exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_lcts_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/lcts" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_lcts_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_nac_e" metaid="R_EX_nac_e" name="Nicotinate exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_nac_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/nac" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nac_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_ocdca_e" metaid="R_EX_ocdca_e" name="Octadecanoate (n-C18:0) exchange"
-      reversible="false" sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_ocdca_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ocdca" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ocdca_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GMPS" metaid="R_GMPS" name="GMP synthase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GMPS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GMPS" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GMP-SYN-NH3-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/6.3.5.2" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01230" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100383" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18301" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18302" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18303" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18304" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2507" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nh4_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_xmp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_amp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gmp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FTHFLi" metaid="R_FTHFLi" name="Formate-tetrahydrofolate ligase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FTHFLi">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FTHFLi" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/6.3.4.3" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00943" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99672" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20221" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20222" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20223" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20224" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_for_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_thf_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_10fthf_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_UDPGD" metaid="R_UDPGD" name="UDPglucose 6-dehydrogenase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_UDPGD">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/UDPGD" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:UGD-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.22" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00286" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105063" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23596" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23597" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23598" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23599" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2028" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nad_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_udpg_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="3" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadh_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_udpglcur_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GLCRD" metaid="R_GLCRD" name="Glucarate dehydratase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLCRD">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLCRD" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLUCARDEHYDRA-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.40" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02752" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100220" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14573" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14574" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14575" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14576" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2788" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2787" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glcr_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_5dh4dglc_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PPPNDO" metaid="R_PPPNDO" name="Phenylpropanoate Dioxygenase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PPPNDO">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PPPNDO" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:HCAMULTI-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.14.12.19" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103134" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20357" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20358" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20359" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20360" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b2540" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2542" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2538" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2539" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadh_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_o2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pppn_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cechddd_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nad_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CHRPL" metaid="R_CHRPL" name="Chorismate pyruvate lyase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CHRPL">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CHRPL" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CHORPYRLY-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.1.3.40" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01302" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96711" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16505" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16506" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16507" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16508" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b4039" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1096" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_chor_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_4hbz_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pyr_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_TDPAGTA" metaid="R_TDPAGTA" name="DTDP-4-amino-4,6-dideoxy-D-glucose transaminase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_TDPAGTA">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/TDPAGTA" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RFFTRANS-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.6.1.59" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R04438" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104758" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28631" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28632" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28633" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28634" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3791" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dtdp4d6dg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glu__L_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_akg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dtdp4addg_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_UACMAMO" metaid="R_UACMAMO" name="UDP-N-acetyl-D-mannosamine oxidoreductase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_UACMAMO">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/UACMAMO" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:UDPMANNACADEHYDROG-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.336" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R03317" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105022" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25780" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25781" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25782" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25783" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3787" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nad_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_uacmam_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="3" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadh_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_uacmamu_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_FBA3" metaid="R_FBA3"
-      name="Sedoheptulose 1,7-bisphosphate D-glyceraldehyde-3-phosphate-lyase" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FBA3">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FBA3" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:SEDOBISALDOL-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.1.2.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.1.2.13" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01829" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99461" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30167" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30168" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30169" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30170" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2925" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_s17bp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dhap_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_e4p_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PMPK" metaid="R_PMPK" name="Phosphomethylpyrimidine kinase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PMPK">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PMPK" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PYRIMSYN3-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.4.7" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R04509" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103045" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19893" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19894" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19895" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19896" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2103" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_4ampm_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2mahmp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LCADi" metaid="R_LCADi" name="Lactaldehyde dehydrogenase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LCADi">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LCADi" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:LACTALDDEHYDROG-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.2.1.22" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01446" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101018" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14277" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14278" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14279" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14280" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1415" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_lald__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nad_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_lac__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadh_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ADK3" metaid="R_ADK3" name="Adentylate kinase (GTP)" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ADK3">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ADK3" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-14074" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.4.10" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.4.4" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95452" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29863" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29864" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29865" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29866" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0474" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_amp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gtp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gdp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GLUDC" metaid="R_GLUDC" name="Glutamate Decarboxylase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLUDC">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLUDC" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLUTDECARBOX-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.1.1.15" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00261" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95942" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17785" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17786" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17787" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17788" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b3517" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1493" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glu__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_4abut_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_BSORy" metaid="R_BSORy" name="Biotin sulfoxide reductase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_BSORy">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/BSORy" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.-.-.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R10127" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96326" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30535" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30536" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30537" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30538" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3551" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_btnso_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_btn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ADSK" metaid="R_ADSK" name="Adenylyl-sulfate kinase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ADSK">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ADSK" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ADENYLYLSULFKIN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.1.25" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00509" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95159" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24152" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24153" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24154" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24155" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2750" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_aps_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_paps_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_HSDy" metaid="R_HSDy" name="Homoserine dehydrogenase (NADPH)" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_HSDy">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/HSDy" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.3" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01775" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100734" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15761" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15762" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15763" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15764" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b3940" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0002" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_hom__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_aspsa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadph_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CYSTL" metaid="R_CYSTL" name="Cystathionine b-lyase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CYSTL">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CYSTL" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.4.1.8" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01286" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96469" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13965" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13966" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13967" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13968" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b3008" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1622" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cyst__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_hcys__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nh4_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pyr_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_SHSL1" metaid="R_SHSL1" name="O-succinylhomoserine lyase (L-cysteine)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_SHSL1">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/SHSL1" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:O-SUCCHOMOSERLYASE-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.5.1.48" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R03260" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104380" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20397" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20398" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20399" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20400" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3939" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cys__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_suchms_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cyst__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_succ_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_SSALy" metaid="R_SSALy" name="Succinate-semialdehyde dehydrogenase (NADP)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_SSALy">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/SSALy" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:SUCCSEMIALDDEHYDROG-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.2.1.16" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.2.1.79" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00714" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104541" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13213" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13214" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13215" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13216" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1525" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2661" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_sucsal_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadph_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_succ_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_dad_2_e" metaid="R_EX_dad_2_e" name="Deoxyadenosine exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_dad_2_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/dad_2" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dad_2_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_ser__D_e" metaid="R_EX_ser__D_e" name="D-Serine exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_ser__D_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ser__D" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ser__D_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_gam6p_e" metaid="R_EX_gam6p_e" name="D-Glucosamine 6-phosphate exchange"
-      reversible="false" sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_gam6p_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/gam6p" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gam6p_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_15dap_e" metaid="R_EX_15dap_e" name="1,5-Diaminopentane exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_15dap_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/15dap" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_15dap_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_ocdcea_e" metaid="R_EX_ocdcea_e" name="Octadecenoate (n-C18:1) exchange"
-      reversible="false" sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_ocdcea_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ocdcea" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ocdcea_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_cynt_e" metaid="R_EX_cynt_e" name="Cyanate exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_cynt_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/cynt" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cynt_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_galctn__D_e" metaid="R_EX_galctn__D_e" name="D-Galactonate exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_galctn__D_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/galctn__D" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_galctn__D_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_glyb_e" metaid="R_EX_glyb_e" name="Glycine betaine exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_glyb_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/glyb" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glyb_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_3HCINNMH" metaid="R_3HCINNMH" name="3-hydroxycinnamate hydroxylase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_3HCINNMH">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/3HCINNMH" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-10040" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.14.13.127" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R06787" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94893" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27846" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27847" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27848" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27849" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0347" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3hcinnm_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadh_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_o2_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dhcinnm_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nad_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_BSORx" metaid="R_BSORx" name="Biotin sulfoxide reductase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_BSORx">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/BSORx" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96325" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30531" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30532" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30533" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30534" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3551" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_btnso_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadh_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_btn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nad_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NMNt7pp" metaid="R_NMNt7pp" name="NMN transport via NMN glycohydrolase (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NMNt7pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NMNt7pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.2.2.14" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101974" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nmn_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ncam_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_r5p_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_GLUtex" metaid="R_GLUtex"
-      name="L-glutamate transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLUtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLUtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-232" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-234" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100301" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glu__L_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glu__L_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_GLYtex" metaid="R_GLYtex"
-      name="Glycine transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLYtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLYtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-537" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100371" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gly_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gly_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_GLYALDtex" metaid="R_GLYALDtex"
-      name="Glyceraldehyde transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLYALDtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLYALDtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100311" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glyald_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glyald_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_GLYBtex" metaid="R_GLYBtex"
-      name="Glycine betaine transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLYBtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLYBtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-490" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100317" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28943" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28944" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28945" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28946" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glyb_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glyb_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_GLYCtex" metaid="R_GLYCtex"
-      name="Glycerol transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLYCtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLYCtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-131" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100343" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29675" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29676" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29677" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29678" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glyc_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glyc_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_GLYC3Ptex" metaid="R_GLYC3Ptex"
-      name="Glycerol-3-phosphate transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLYC3Ptex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLYC3Ptex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100308" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34967" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34968" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34969" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34970" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glyc3p_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glyc3p_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_GLYCLTtex" metaid="R_GLYCLTtex"
-      name="Glycolate transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLYCLTtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLYCLTtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-5111" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100333" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29447" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29448" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29449" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29450" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glyclt_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glyclt_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_GTPtex" metaid="R_GTPtex"
-      name="GTP transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GTPtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GTPtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100462" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gtp_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gtp_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_GUAtex" metaid="R_GUAtex"
-      name="Guanine transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GUAtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GUAtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-578" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100465" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0411" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gua_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gua_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_Htex" metaid="R_Htex" name="Proton transport via diffusion (extracellular to periplasm)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_Htex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/Htex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-14452" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100765" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34979" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34980" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34981" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34982" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_H2tex" metaid="R_H2tex"
-      name="Hydrogen transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_H2tex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/H2tex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100495" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_H2Otex" metaid="R_H2Otex"
-      name="H2O transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_H2Otex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/H2Otex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-145" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-547" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR98641" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29667" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29668" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29669" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29670" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1319" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3875" />
-            <fbc:geneProductRef fbc:geneProduct="G_s0001" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0957" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FACOAL160t2pp" metaid="R_FACOAL160t2pp"
-      name="Fatty-acid-CoA ligase (hexadecanoate transport via vectoral Co-A coupling)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FACOAL160t2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FACOAL160t2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99155" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/51716" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/51717" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/51718" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/51719" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1701" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1805" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_coa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_hdca_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_amp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pmtcoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FACOAL180t2pp" metaid="R_FACOAL180t2pp"
-      name="Fatty-acid-CoA ligase (octadecanoate transport via vectoral Co-A coupling)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FACOAL180t2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FACOAL180t2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99167" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/51720" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/51721" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/51722" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/51723" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1701" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1805" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_coa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ocdca_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_amp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_stcoa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_SPODMpp" metaid="R_SPODMpp" name="Superoxide dismutase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_SPODMpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/SPODMpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:SUPEROX-DISMUT-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.15.1.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00275" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104498" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20696" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20697" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20698" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20699" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1646" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_o2s_p" stoichiometry="2" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o2_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_o2_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NO3R1bpp" metaid="R_NO3R1bpp" name="Nitrate reductase (Ubiquinol-8)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NO3R1bpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NO3R1bpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101987" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29123" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29124" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29125" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29126" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b2204" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2205" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2202" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2203" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2206" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_no3_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_q8h2_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_no2_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_q8_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_O2tpp" metaid="R_O2tpp" name="O2 transport via diffusion (periplasm)" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_O2tpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/O2tpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-474" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102090" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_s0001" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_o2_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_o2_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PHYTSpp" metaid="R_PHYTSpp" name="Phytase (periplasm)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PHYTSpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PHYTSpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102659" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0980" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="6" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_minohp_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_inost_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_p" stoichiometry="6" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PPTHpp" metaid="R_PPTHpp" name="Phosphonate hydrogenase (periplasm)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PPTHpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PPTHpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103149" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29451" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29452" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29453" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29454" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0383" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ppt_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_PYRt2rpp" metaid="R_PYRt2rpp"
-      name="Pyruvate reversible transport via proton symport (periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PYRt2rpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PYRt2rpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103385" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pyr_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pyr_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NO3R2pp" metaid="R_NO3R2pp" name="Nitrate reductase (Menaquinol-8) (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NO3R2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NO3R2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101988" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29139#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29140#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29141#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29142#1" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b1466" />
-              <fbc:geneProductRef fbc:geneProduct="G_b1467" />
-              <fbc:geneProductRef fbc:geneProduct="G_b1468" />
-              <fbc:geneProductRef fbc:geneProduct="G_b1465" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b1226" />
-              <fbc:geneProductRef fbc:geneProduct="G_b1224" />
-              <fbc:geneProductRef fbc:geneProduct="G_b1227" />
-              <fbc:geneProductRef fbc:geneProduct="G_b1225" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mql8_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_no3_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_mqn8_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_no2_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NTP3pp" metaid="R_NTP3pp" name="Nucleoside-triphosphatase (GTP) (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NTP3pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NTP3pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-5462" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.15" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.5.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.5.2" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.5.3" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.5.4" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.5.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.5.6" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00335" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102043" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19669" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19670" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19671" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19672" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0980" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gtp_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gdp_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NO3R2bpp" metaid="R_NO3R2bpp" name="Nitrate reductase (Menaquinol-8) (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NO3R2bpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NO3R2bpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.7.99.4" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101989" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b2203" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2206" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2202" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mql8_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_no3_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_mqn8_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_no2_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_THD2pp" metaid="R_THD2pp" name="NAD(P) transhydrogenase (periplasm)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_THD2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/THD2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.6.1.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104805" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b1602" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1603" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadh_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nad_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadph_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_TMAOR1pp" metaid="R_TMAOR1pp"
-      name="Trimethylamine N-oxide reductase (menaquinol 8) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_TMAOR1pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/TMAOR1pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104879" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b0997" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0996" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b1872" />
-              <fbc:geneProductRef fbc:geneProduct="G_b1873" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mql8_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_tmao_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_mqn8_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_tma_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_TMAOR2pp" metaid="R_TMAOR2pp"
-      name="Trimethylamine N-oxide reductase (demethylmenaquinol 8) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_TMAOR2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/TMAOR2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104881" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b0997" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0996" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b1872" />
-              <fbc:geneProductRef fbc:geneProduct="G_b1873" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2dmmql8_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_tmao_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2dmmq8_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_tma_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_XANtpp" metaid="R_XANtpp" name="Xanthine reversible transport (periplasm)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_XANtpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/XANtpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-561" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105226" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_xan_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_xan_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_DAPtex" metaid="R_DAPtex"
-      name="1,5-Diaminopentane transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DAPtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DAPtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97147" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_15dap_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_15dap_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_12PPDStex" metaid="R_12PPDStex"
-      name="(S)-Propane-1,2-diol transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_12PPDStex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/12PPDStex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94684" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_12ppd__S_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_12ppd__S_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_DDGLCNtex" metaid="R_DDGLCNtex"
-      name="2-dehydro-3-deoxy-D-gluconate transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DDGLCNtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DDGLCNtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97215" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2ddglcn_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2ddglcn_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_26DAHtex" metaid="R_26DAHtex"
-      name="Meso-2,6-Diaminoheptanedioate transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_26DAHtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/26DAHtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94741" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_26dap__M_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_26dap__M_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_HCINNMtex" metaid="R_HCINNMtex"
-      name="3-hydroxycinnamic acid transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_HCINNMtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/HCINNMtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100571" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3hcinnm_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3hcinnm_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_HPPPNtex" metaid="R_HPPPNtex"
-      name="3-(3-hydroxyphenyl)propionate transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_HPPPNtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/HPPPNtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100697" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3hpppn_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3hpppn_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ACtex" metaid="R_ACtex"
-      name="Acetate transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ACtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ACtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-1981" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-567" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95431" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27814" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27815" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27816" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27817" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ac_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ac_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ACALDtex" metaid="R_ACALDtex"
-      name="Acetaldehyde transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ACALDtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ACALDtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95212" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_acald_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_acald_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ACMANAtex" metaid="R_ACMANAtex"
-      name="N-acetyl-D-mannosamine transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ACMANAtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ACMANAtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95277" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_acmana_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_acmana_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ACMUMtex" metaid="R_ACMUMtex"
-      name="N-acetylmuramate transport via diffusion (extracellular to periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ACMUMtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ACMUMtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95279" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_acmum_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_acmum_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ACACT7r" metaid="R_ACACT7r" name="Acetyl-CoA C-acyltransferase (tetradecanoyl-CoA) (r)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ACACT7r">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ACACT7r" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:2.3.1.155-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-16560" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.155" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.16" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.9" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R03991" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95203" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18161" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18162" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18163" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18164" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2342" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3845" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_accoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_tdcoa_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3ohdcoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_coa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PSP_L" metaid="R_PSP_L" name="Phosphoserine phosphatase (L-serine)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PSP_L">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PSP_L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-5114" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.3" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00582" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103260" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21208" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21209" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21210" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21211" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4388" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pser__L_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ser__L_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ACACT2r" metaid="R_ACACT2r" name="Acetyl-CoA C-acyltransferase (butanoyl-CoA) (r)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ACACT2r">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ACACT2r" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-12565" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.16" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.9" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01177" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95196" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/31111" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/31112" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/31113" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/31114" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2342" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3845" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_accoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_btcoa_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3ohcoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_coa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ACACT3r" metaid="R_ACACT3r" name="Acetyl-CoA C-acyltransferase (hexanoyl-CoA) (r)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ACACT3r">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ACACT3r" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.9" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95197" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2342" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3845" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_accoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_hxcoa_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3oocoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_coa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ACACT4r" metaid="R_ACACT4r" name="Acetyl-CoA C-acyltransferase (octanoyl-CoA) (r)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ACACT4r">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ACACT4r" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-13617" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.16" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.9" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R03778" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95198" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/31087" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/31088" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/31089" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/31090" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2342" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3845" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_accoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_occoa_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3odcoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_coa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_SUCCt2_2pp" metaid="R_SUCCt2_2pp"
-      name="Succinate transport via proton symport (2 H) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_SUCCt2_2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/SUCCt2_2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-121" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104620" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29303" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29304" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29305" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29306" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b3528" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0010" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_succ_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_succ_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_SUCFUMtpp" metaid="R_SUCFUMtpp" name="Succinate:fumarate antiporter (periplasm)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_SUCFUMtpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/SUCFUMtpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-106" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104633" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29323" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29324" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29325" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29326" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0621" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4123" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4138" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fum_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_succ_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fum_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_succ_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_SUCptspp" metaid="R_SUCptspp" name="Sucrose transport via PEP:Pyr  (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_SUCptspp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/SUCptspp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104643" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b2416" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2417" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2415" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2429" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pep_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_sucr_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pyr_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_suc6p_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_SULabcpp" metaid="R_SULabcpp" name="Sulfate transport via ABC system (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_SULabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/SULabcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:3.6.3.25-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ABC-70-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.25" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104655" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10192#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10193#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10194#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10195#1" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b0765" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0764" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0763" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b2422" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2423" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2424" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2425" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b2424" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2422" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2423" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3917" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_so4_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_so4_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_TSULabcpp" metaid="R_TSULabcpp" name="Thiosulfate transport via ABC system (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_TSULabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/TSULabcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ABC-7-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.25" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104964" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29871#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29872#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29873#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29874#1" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b2424" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2423" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2422" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3917" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b2424" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2422" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2425" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2423" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_tsul_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_tsul_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_TARTRt7pp" metaid="R_TARTRt7pp" name="Tartrate/succinate antiporter (periplasm)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_TARTRt7pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/TARTRt7pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-127" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104723" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29259" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29260" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29261" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29262" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3063" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_succ_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_tartr__L_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_succ_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_tartr__L_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_AHGDx" metaid="R_AHGDx" name="(S)-alpha-hydroxyglutarate dehydrogenase"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_AHGDx">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/AHGDx" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-16701" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.399" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.M7" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95630" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2913" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_S2hglut_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nad_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_akg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadh_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_TAURabcpp" metaid="R_TAURabcpp" name="Taurine transport via ABC system (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_TAURabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/TAURabcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:3.6.3.36-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ABC-64-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.36" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104732" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14613#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14614#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14615#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14616#1" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b0367" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0365" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0366" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_taur_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_taur_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_THMDt2pp_copy1" metaid="R_THMDt2pp_copy1" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_THMDt2pp_copy1">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-108H" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104818" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29955" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29956" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29957" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29958" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or>
-            <fbc:geneProductRef fbc:geneProduct="G_b2964" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2393" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_thymd_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_thymd_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_EX_ca2_e" metaid="R_EX_ca2_e" name="Calcium exchange" reversible="true"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_ca2_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ca2" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ca2_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_so3_e" metaid="R_EX_so3_e" name="Sulfite exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_so3_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/so3" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_so3_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_Kt2pp" metaid="R_Kt2pp" name="Potassium transport in via proton symport (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_Kt2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/Kt2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-3" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100951" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28490" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28491" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28492" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28493" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b1363" />
-              <fbc:geneProductRef fbc:geneProduct="G_b1291" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3290" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b1291" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3849" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3290" />
-            </fbc:and>
-            <fbc:geneProductRef fbc:geneProduct="G_b1250" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3747" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_k_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_k_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_AKGt2rpp" metaid="R_AKGt2rpp"
-      name="2-oxoglutarate reversible transport via symport (periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_AKGt2rpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/AKGt2rpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-23" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95661" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29011" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29012" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29013" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29014" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2587" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_akg_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_akg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_XYLt2pp" metaid="R_XYLt2pp" name="D-xylose transport in via proton symport (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_XYLt2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/XYLt2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105271" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28959" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28960" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28961" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28962" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4031" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_xyl__D_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_xyl__D_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_ascb__L_e" metaid="R_EX_ascb__L_e" name="L-Ascorbate exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_ascb__L_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ascb__L" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ascb__L_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_ala_B_e" metaid="R_EX_ala_B_e" name="Beta-Alanine exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_ala_B_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ala_B" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ala_B_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_agm_e" metaid="R_EX_agm_e" name="Agmatine exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_agm_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/agm" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_agm_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_minohp_e" metaid="R_EX_minohp_e" name="Myo-Inositol hexakisphosphate exchange"
-      reversible="false" sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_minohp_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/minohp" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_minohp_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_ppt_e" metaid="R_EX_ppt_e" name="Phosphonate exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_ppt_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ppt" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ppt_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_hxa_e" metaid="R_EX_hxa_e" name="Hexanoate (n-C6:0) exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_hxa_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/hxa" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_hxa_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_lyx__L_e" metaid="R_EX_lyx__L_e" name="L-Lyxose exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_lyx__L_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/lyx__L" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_lyx__L_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_acmum_e" metaid="R_EX_acmum_e" name="N-Acetylmuramate exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_acmum_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/acmum" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_acmum_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_dca_e" metaid="R_EX_dca_e" name="Decanoate (n-C10:0) exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_dca_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/dca" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dca_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_all__D_e" metaid="R_EX_all__D_e" name="D-Allose exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_all__D_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/all__D" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_all__D_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_octa_e" metaid="R_EX_octa_e" name="Octanoate (n-C8:0) exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_octa_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/octa" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_octa_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_xylu__L_e" metaid="R_EX_xylu__L_e" name="L-Xylulose exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_xylu__L_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/xylu__L" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_xylu__L_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_gdp_e" metaid="R_EX_gdp_e" name="GDP exchange" reversible="false" sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_gdp_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/gdp" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gdp_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_gtp_e" metaid="R_EX_gtp_e" name="GTP exchange" reversible="false" sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_gtp_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/gtp" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gtp_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_THMabcpp" metaid="R_THMabcpp" name="Thiamine transport via ABC system (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_THMabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/THMabcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ABC-32-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104827" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29811#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29812#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29813#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29814#1" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b0068" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0066" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0067" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_thm_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_thm_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_THMDt2pp_copy2" metaid="R_THMDt2pp_copy2" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_THMDt2pp_copy2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-108H" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104818" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29955" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29956" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29957" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29958" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2406" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_thymd_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_thymd_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_THRabcpp" metaid="R_THRabcpp" name="L-threonine transport via ABC system (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_THRabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/THRabcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104849" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b3457" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3455" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3456" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3460" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3454" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_thr__L_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_thr__L_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_TREptspp" metaid="R_TREptspp" name="Trehalose transport via PEP:Pyr PTS (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_TREptspp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/TREptspp" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.1.69" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104931" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b2416" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2417" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4240" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2415" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pep_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_tre_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pyr_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_tre6p_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_TRPt2rpp" metaid="R_TRPt2rpp"
-      name="L-tryptophan reversible transport via proton symport (periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_TRPt2rpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/TRPt2rpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-76" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104950" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28879" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28880" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28881" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28882" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b3709" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3161" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0112" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_trp__L_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_trp__L_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_TYRt2rpp" metaid="R_TYRt2rpp"
-      name="L-tyrosine reversible transport via proton symport (periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_TYRt2rpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/TYRt2rpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-77" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105003" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28875" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28876" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28877" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28878" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1907" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0112" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_tyr__L_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_tyr__L_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_URIt2pp_copy1" metaid="R_URIt2pp_copy1" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_URIt2pp_copy1">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-108I" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105166" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29951" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29952" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29953" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29954" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or>
-            <fbc:geneProductRef fbc:geneProduct="G_b2964" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2393" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_uri_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_uri_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_URIt2pp_copy2" metaid="R_URIt2pp_copy2" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_URIt2pp_copy2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-108I" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105166" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29951" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29952" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29953" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29954" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2406" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_uri_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_uri_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_VALabcpp" metaid="R_VALabcpp" name="L-valine transport via ABC system (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_VALabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/VALabcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ABC-36-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105187" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29803#2" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29804#2" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29805#2" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29806#2" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b3455" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3456" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3457" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3460" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3454" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_val__L_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_val__L_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_XTSNt2rpp" metaid="R_XTSNt2rpp"
-      name="Xanthosine transport via proton symport (periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_XTSNt2rpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/XTSNt2rpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-31" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105246" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28939" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28940" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28941" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28942" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2406" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_xtsn_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_xtsn_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_XYLabcpp" metaid="R_XYLabcpp" name="D-xylose transport via ABC system (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_XYLabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/XYLabcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105268" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29899#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29900#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29901#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29902#1" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b3566" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3568" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3567" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_xyl__D_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_xyl__D_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_XYLUt2pp" metaid="R_XYLUt2pp" name="L-xylulose transport in via proton symport (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_XYLUt2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/XYLUt2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105266" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b3578" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3577" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3579" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_xylu__L_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_xylu__L_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_THRt4pp" metaid="R_THRt4pp" name="L-threonine  via sodium symport (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_THRt4pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/THRt4pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104842" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3089" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_na1_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_thr__L_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_na1_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_thr__L_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_fruur_e" metaid="R_EX_fruur_e" name="D-Fructuronate exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_fruur_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/fruur" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fruur_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_GALtex" metaid="R_GALtex"
-      name="D-galactose transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GALtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GALtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100025" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34915" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34916" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34917" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34918" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gal_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gal_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_GALCTtex" metaid="R_GALCTtex"
-      name="D-galactarte transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GALCTtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GALCTtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-203" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99963" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28478" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28479" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28480" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28481" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_galct__D_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_galct__D_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_GALCTNtex" metaid="R_GALCTNtex"
-      name="D-galactonate transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GALCTNtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GALCTNtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99961" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_galctn__D_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_galctn__D_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_GALTtex" metaid="R_GALTtex"
-      name="Galactitol transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GALTtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GALTtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100019" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/33143" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/33144" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/33145" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/33146" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_galt_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_galt_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_GALURtex" metaid="R_GALURtex"
-      name="D-galacturonate transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GALURtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GALURtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100021" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_galur_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_galur_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GTPCI" metaid="R_GTPCI" name="GTP cyclohydrolase I" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GTPCI">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GTPCI" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GTP-CYCLOHYDRO-I-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.5.4.16" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00424" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100453" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17473" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17474" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17475" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17476" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2153" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gtp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ahdt_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_for_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FDMO" metaid="R_FDMO" name="FMNH2-dependent monooxygenase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FDMO">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FDMO" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-13418" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.14.14.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99485" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29715" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29716" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29717" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29718" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0935" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fmnh2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_isetac_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_o2_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fmn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gcald_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_so3_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FEOXAMabcpp" metaid="R_FEOXAMabcpp" name="Ferroxamine transport via ABC system (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FEOXAMabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FEOXAMabcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99556" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b0153" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0152" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0151" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_feoxam_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_feoxam_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CBL1abcpp" metaid="R_CBL1abcpp" name="Cob(1)alamin transport via ABC system (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CBL1abcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CBL1abcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ABC-5-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.33" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96471" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b0158" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1709" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1711" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cbl1_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cbl1_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ACACt2pp" metaid="R_ACACt2pp"
-      name="Acetoacetate transport via proton symport  (periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ACACt2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ACACt2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95207" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2223" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_acac_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_acac_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ACGAptspp" metaid="R_ACGAptspp"
-      name="N-Acetyl-D-glucosamine transport via PEP:Pyr PTS  (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ACGAptspp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ACGAptspp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95253" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b2415" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2416" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2417" />
-              <fbc:geneProductRef fbc:geneProduct="G_b1101" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b2416" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2415" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0679" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_acgam_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pep_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_acgam6p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pyr_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ACMANAptspp" metaid="R_ACMANAptspp"
-      name="N-acetyl-D-mannosamine transport via PTS  (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ACMANAptspp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ACMANAptspp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95275" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b1817" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1818" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2415" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2416" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1819" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_acmana_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pep_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_acmanap_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pyr_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ACNAMt2pp" metaid="R_ACNAMt2pp" name="N-acetylneuraminate proton symport (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ACNAMt2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ACNAMt2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-25" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95291" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28987" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28988" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28989" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28990" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3224" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_acnam_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_acnam_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CHOLD" metaid="R_CHOLD" name="Choline dehydrogenase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CHOLD">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CHOLD" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-6021" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R08557" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96697" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/33051" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/33052" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/33053" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/33054" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0311" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_chol_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nad_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_betald_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadh_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DRPA" metaid="R_DRPA" name="Deoxyribose-phosphate aldolase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DRPA">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DRPA" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DEOXYRIBOSE-P-ALD-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.1.2.4" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01066" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97787" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12821" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12822" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12823" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12824" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4381" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2dr5p_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_acald_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g3p_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_TKT2" metaid="R_TKT2" name="Transketolase" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_TKT2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/TKT2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:2TRANSKETO-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.2.1.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01830" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104869" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27626" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27627" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27628" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27629" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2935" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2465" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_e4p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_xu5p__D_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_f6p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g3p_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_ch4_e" metaid="R_EX_ch4_e" name="EX ch4 LPAREN e RPAREN " reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_ch4_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ch4" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ch4_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FEENTERabcpp" metaid="R_FEENTERabcpp"
-      name="Fe-enterobactin transport via ABC system (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FEENTERabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FEENTERabcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.34" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99546" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b0590" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0589" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0592" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0588" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_feenter_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_feenter_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FECRMabcpp" metaid="R_FECRMabcpp" name="Ferrichrome transport via ABC system (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FECRMabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FECRMabcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-298" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.34" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99535" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b0152" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0153" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0151" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fecrm_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fecrm_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_GAMtex" metaid="R_GAMtex"
-      name="D-glucosamine transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GAMtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GAMtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100035" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gam_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gam_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_GBBTNtex" metaid="R_GBBTNtex"
-      name="Gamma-butyrobetaine transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GBBTNtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GBBTNtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100053" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/32835" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/32836" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/32837" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/32838" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gbbtn_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gbbtn_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ARBt2rpp" metaid="R_ARBt2rpp"
-      name="L-arabinose transport via proton symport (periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ARBt2rpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ARBt2rpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-10" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95936" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2841" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_arab__L_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_arab__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DAPabcpp" metaid="R_DAPabcpp" name="M-diaminopimelic acid ABC transport (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DAPabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DAPabcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-291" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97146" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_26dap__M_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_26dap__M_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_CO2tpp" metaid="R_CO2tpp" name="CO2 transporter via diffusion (periplasm)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CO2tpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CO2tpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-545" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96810" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_s0001" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_co2_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_DHAtpp" metaid="R_DHAtpp"
-      name="Dihydroxyacetone transport via facilitated diffusion (periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DHAtpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DHAtpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-559" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97367" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dha_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dha_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DMSOR1pp" metaid="R_DMSOR1pp"
-      name="Dimethyl sulfoxide reductase (Menaquinol 8) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DMSOR1pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DMSOR1pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97530" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b1872" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1873" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dmso_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mql8_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dms_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_mqn8_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ARGabcpp" metaid="R_ARGabcpp" name="L-arginine transport via ABC system (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ARGabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ARGabcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ABC-4-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.21" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95952" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29879#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29880#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29881#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29882#1" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b2310" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2308" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2306" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2307" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b0862" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0860" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0864" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0863" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0861" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_arg__L_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_arg__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ARGAGMt7pp" metaid="R_ARGAGMt7pp" name="Arginine/agmatine antiport (periplasm)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ARGAGMt7pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ARGAGMt7pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-2162" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95938" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29651" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29652" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29653" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29654" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4115" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_agm_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_arg__L_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_agm_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_arg__L_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ASCBptspp" metaid="R_ASCBptspp" name="L-ascorbate transport via PEP:Pyr PTS (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ASCBptspp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ASCBptspp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96047" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b2416" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4193" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4195" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2415" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4194" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ascb__L_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pep_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ascb6p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pyr_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ASNt2rpp" metaid="R_ASNt2rpp"
-      name="L-asparagine reversible transport via proton symport (periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ASNt2rpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ASNt2rpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-262" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96066" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1453" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_asn__L_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_asn__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ASPabcpp" metaid="R_ASPabcpp" name="L-aspartate transport via ABC system (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ASPabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ASPabcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-222" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.21" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96103" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29039#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29040#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29041#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29042#1" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b0655" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0654" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0652" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0653" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_asp__L_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_asp__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ASPt2pp" metaid="R_ASPt2pp" name="L-aspartate transport in via proton symport (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ASPt2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ASPt2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96106" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4077" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_asp__L_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_asp__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ASPt2_2pp" metaid="R_ASPt2_2pp"
-      name="Aspartate transport via proton symport (2 H) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ASPt2_2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ASPt2_2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-122A" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96104" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29287" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29288" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29289" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29290" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3528" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_asp__L_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="2" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_asp__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ASPt2_3pp" metaid="R_ASPt2_3pp"
-      name="L-asparate transport via proton symport (3 H) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ASPt2_3pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ASPt2_3pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96105" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b4138" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4123" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_asp__L_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="3" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_asp__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="3" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_HIStex" metaid="R_HIStex"
-      name="L-histidine transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_HIStex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/HIStex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100649" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_his__L_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_his__L_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_HXAtex" metaid="R_HXAtex"
-      name="Hexanoate transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_HXAtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/HXAtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100750" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_hxa_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_hxa_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_HYXNtex" metaid="R_HYXNtex"
-      name="Hypoxanthine transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_HYXNtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/HYXNtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-562" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-579" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100749" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_hxan_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_hxan_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_IDONtex" metaid="R_IDONtex"
-      name="L-idonate transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_IDONtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/IDONtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100804" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_idon__L_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_idon__L_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ILEtex" metaid="R_ILEtex"
-      name="L-isoleucine transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ILEtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ILEtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100824" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ile__L_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ile__L_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_INSTtex" metaid="R_INSTtex"
-      name="Inositol transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_INSTtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/INSTtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100848" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/32867" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/32868" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/32869" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/32870" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_inost_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_inost_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_INStex" metaid="R_INStex"
-      name="Inosine transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_INStex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/INStex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100849" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0411" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ins_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ins_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_Ktex" metaid="R_Ktex"
-      name="Potassium transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_Ktex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/Ktex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-143" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-185" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-186" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-187" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-190" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100950" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29463" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29464" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29465" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29466" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_k_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_k_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_D_LACtex" metaid="R_D_LACtex"
-      name="D-lactate transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_D_LACtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/D_LACtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97840" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_lac__D_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_lac__D_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NTD8pp" metaid="R_NTD8pp" name="5'-nucleotidase (dGMP)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NTD8pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NTD8pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-14142" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.89" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01968" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102038" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29379" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29380" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29381" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29382" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b4055" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0480" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dgmp_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dgsn_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_FRULYStex" metaid="R_FRULYStex"
-      name="Fructoselysine transporter via diffusion (extracellular)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FRULYStex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FRULYStex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-417" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99657" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28454" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28455" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28456" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28457" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_frulys_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_frulys_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_fad_e" metaid="R_EX_fad_e" name="Exchange of Flavin adenine dinucleotide oxidized"
-      reversible="false" sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_fad_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/fad" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fad_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_GALCTt2rpp" metaid="R_GALCTt2rpp"
-      name="D-galactarte transport via proton symport, reversible (periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GALCTt2rpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GALCTt2rpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99962" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2789" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3127" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_galct__D_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_galct__D_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GALt2pp" metaid="R_GALt2pp" name="D-galactose transport in via proton symport (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GALt2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GALt2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-21" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100026" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29019" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29020" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29021" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29022" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2943" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gal_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gal_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ASPtex" metaid="R_ASPtex"
-      name="L-aspartate transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ASPtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ASPtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-554" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96107" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_asp__L_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_asp__L_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ABUTt2pp" metaid="R_ABUTt2pp"
-      name="4-aminobutyrate transport in via proton symport (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ABUTt2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ABUTt2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-57" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94994" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28915" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28916" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28917" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28918" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2663" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_4abut_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_4abut_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CYSabcpp" metaid="R_CYSabcpp" name="L-cysteine uptake via ABC system (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CYSabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CYSabcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-265" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.21" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97025" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29783#2" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29784#2" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29785#2" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29786#2" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/32795#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/32796#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/32797#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/32798#1" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b1920" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1918" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1917" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cys__L_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cys__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_SBTptspp" metaid="R_SBTptspp" name="D-sorbitol transport via PEP:Pyr PTS (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_SBTptspp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/SBTptspp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104290" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b2702" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2704" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2416" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2703" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2415" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pep_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_sbt__D_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pyr_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_sbt6p_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_TREHpp" metaid="R_TREHpp" name="Alpha,alpha-trehalase (periplasm)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_TREHpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/TREHpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.2.1.28" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00010" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R06103" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95163" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20868" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20869" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20870" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20871" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1197" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_tre_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glc__D_p" stoichiometry="2" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CYTBDpp" metaid="R_CYTBDpp"
-      name="Cytochrome oxidase bd (ubiquinol-8: 2 protons) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CYTBDpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CYTBDpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97031" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b0978" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0979" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b0733" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0734" />
-              <fbc:geneProductRef fbc:geneProduct="G_b4515" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_o2_c" stoichiometry="0.5" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_q8h2_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_q8_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CYTBD2pp" metaid="R_CYTBD2pp"
-      name="Cytochrome oxidase bd (menaquinol-8: 2 protons) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CYTBD2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CYTBD2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97032" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b0978" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0979" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mql8_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_o2_c" stoichiometry="0.5" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_mqn8_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ACALDtpp" metaid="R_ACALDtpp" name="Acetaldehyde reversible transport (periplasm)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ACALDtpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ACALDtpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95212" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_s0001" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_acald_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_acald_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ACt2rpp" metaid="R_ACt2rpp"
-      name="Acetate reversible transport via proton symport (periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ACt2rpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ACt2rpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-571" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95429" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0010" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ac_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ac_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_fe3dcit_e" metaid="R_EX_fe3dcit_e" name="Fe(III)dicitrate exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_fe3dcit_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/fe3dcit" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fe3dcit_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_fe3hox_e" metaid="R_EX_fe3hox_e" name="Fe(III)hydroxamate exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_fe3hox_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/fe3hox" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fe3hox_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_fecrm_e" metaid="R_EX_fecrm_e" name="Ferrichrome exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_fecrm_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/fecrm" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fecrm_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_feenter_e" metaid="R_EX_feenter_e" name="Fe-enterobactin exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_feenter_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/feenter" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_feenter_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_feoxam_e" metaid="R_EX_feoxam_e" name="Ferroxamine exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_feoxam_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/feoxam" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_feoxam_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_cbi_e" metaid="R_EX_cbi_e" name="Cobinamide exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_cbi_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/cbi" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cbi_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_arbtn_fe3_e" metaid="R_EX_arbtn_fe3_e" name="Aerobactin exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_arbtn_fe3_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/arbtn_fe3" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_arbtn_fe3_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_cpgn_e" metaid="R_EX_cpgn_e" name="Coprogen exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_cpgn_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/cpgn" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cpgn_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_adocbl_e" metaid="R_EX_adocbl_e" name="Adenosylcobalamin exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_adocbl_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/adocbl" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_adocbl_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ATPS4rpp" metaid="R_ATPS4rpp" name="ATP synthase (four protons for one ATP) (periplasm)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ATPS4rpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ATPS4rpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ATPSYN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.14" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96136" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b3734" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3733" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3731" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3735" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3732" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3739" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3737" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3738" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3736" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b3732" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3735" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3731" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3733" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3734" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3737" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3738" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3736" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="4" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pi_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="3" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_INDOLEtex" metaid="R_INDOLEtex"
-      name="Indole transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_INDOLEtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/INDOLEtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-563" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100836" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_indole_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_indole_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_L_LACtex" metaid="R_L_LACtex"
-      name="L-lactate transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_L_LACtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/L_LACtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100999" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34987" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34988" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34989" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34990" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_lac__L_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_lac__L_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ACt4pp" metaid="R_ACt4pp" name="Na+/Acetate symport (periplasm)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ACt4pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ACt4pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95430" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4067" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ac_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_na1_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ac_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_na1_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ADEt2rpp" metaid="R_ADEt2rpp"
-      name="Adenine transport via proton symport (reversible) (periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ADEt2rpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ADEt2rpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-198" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-447" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95446" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28719" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28720" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28721" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28722" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b3714" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3654" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3664" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ade_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ade_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ADNt2pp_copy1" metaid="R_ADNt2pp_copy1" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ADNt2pp_copy1">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-108A" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-203" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95461" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29987" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29988" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29989" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29990" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or>
-            <fbc:geneProductRef fbc:geneProduct="G_b2964" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2393" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_adn_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ADNt2pp_copy2" metaid="R_ADNt2pp_copy2" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ADNt2pp_copy2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-108A" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-203" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95461" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29987" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29988" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29989" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29990" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2406" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_adn_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ALAabcpp" metaid="R_ALAabcpp" name="L-alanine transport via ABC system (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ALAabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ALAabcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95703" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b3460" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3456" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3454" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3455" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3457" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ala__L_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ala__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ALLabcpp" metaid="R_ALLabcpp" name="D-allose transport via ABC system (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ALLabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ALLabcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ABC-42-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95775" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b4088" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4087" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4086" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_all__D_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_all__D_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ALLTNt2rpp" metaid="R_ALLTNt2rpp"
-      name="Allantoin transport in via proton symport (periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ALLTNt2rpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ALLTNt2rpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95770" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0511" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_alltn_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_alltn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ARBabcpp" metaid="R_ARBabcpp" name="L-arabinose transport via ABC system (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ARBabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ARBabcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ABC-2-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.17" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95935" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b1901" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4460" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1900" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_arab__L_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_arab__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ECOAH8" metaid="R_ECOAH8"
-      name="3-hydroxyacyl-CoA dehydratase (3-hydroxyoctadecanoyl-CoA)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ECOAH8">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ECOAH8" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.134" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.17" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97893" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2341" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3846" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3hodcoa_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_od2coa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GLCDpp" metaid="R_GLCDpp"
-      name="Glucose dehydrogenase (ubiquinone-8 as acceptor) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLCDpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLCDpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100177" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0124" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0837" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glc__D_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_q8_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glcn_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_q8h2_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_GUAtpp" metaid="R_GUAtpp" name="Guanine transport via diffusion (periplasm)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GUAtpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GUAtpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-578" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100465" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b4464" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4064" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gua_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gua_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_HYD2pp" metaid="R_HYD2pp" name="Hydrogenase (menaquinone8: 2 protons) (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_HYD2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/HYD2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100754" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29051#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29052#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29053#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29054#1" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b0974" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0973" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0972" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b2996" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2994" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2997" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2995" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mqn8_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_mql8_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_HYXNtpp" metaid="R_HYXNtpp" name="Hypoxanthine transport (periplasm)" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_HYXNtpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/HYXNtpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-562" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-579" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100749" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b4064" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4464" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_hxan_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_hxan_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NACtpp" metaid="R_NACtpp" name="Nicotinic acid uptake (periplasm)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NACtpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NACtpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101808" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nac_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nac_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FE3DCITabcpp" metaid="R_FE3DCITabcpp"
-      name="Iron transport from ferric-dicitrate via ABC system (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FE3DCITabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FE3DCITabcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99508" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b4289" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4287" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4288" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4290" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fe3dcit_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cit_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fe3_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CPGNtonex" metaid="R_CPGNtonex" name="Coprogen transport via ton system (extracellular)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CPGNtonex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CPGNtonex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96875" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b1102" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3006" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1252" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3005" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cpgn_e" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cpgn_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_GLCRtex" metaid="R_GLCRtex"
-      name="D-glucarate transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLCRtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLCRtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-204" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100222" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28474" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28475" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28476" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28477" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glcr_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glcr_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_GLCNtex" metaid="R_GLCNtex"
-      name="D-gluconate transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLCNtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLCNtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100210" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glcn_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glcn_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_GLCURtex" metaid="R_GLCURtex"
-      name="D-glucuronat transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLCURtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLCURtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100235" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glcur_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glcur_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_GLNtex" metaid="R_GLNtex"
-      name="L-glutamine transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLNtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLNtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-233" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100259" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gln__L_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gln__L_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_O2tex" metaid="R_O2tex"
-      name="Oxygen transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_O2tex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/O2tex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-474" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102090" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_o2_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_o2_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_ppa_e" metaid="R_EX_ppa_e" name="Propionate exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_ppa_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ppa" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ppa_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_OCTAtex" metaid="R_OCTAtex"
-      name="Octanoate transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_OCTAtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/OCTAtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-272" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99126" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29759" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29760" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29761" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29762" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_octa_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_octa_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ORNtex" metaid="R_ORNtex"
-      name="Ornithine transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ORNtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ORNtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-230" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102223" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_orn_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_orn_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ECOAH5" metaid="R_ECOAH5" name="3-hydroxyacyl-CoA dehydratase (3-hydroxydodecanoyl-CoA)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ECOAH5">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ECOAH5" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.17" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.74" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R04170" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97890" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/31075" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/31076" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/31077" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/31078" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2341" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3846" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3hddcoa_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dd2coa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DHFS" metaid="R_DHFS" name="Dihydrofolate synthase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DHFS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DHFS" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DIHYDROFOLATESYNTH-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/6.3.2.12" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/6.3.2.17" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02237" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97403" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23584" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23585" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23586" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23587" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2315" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dhpt_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glu__L_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dhf_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CITt7pp" metaid="R_CITt7pp" name="Citrate transport via succinate antiport (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CITt7pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CITt7pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-201" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96752" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28835" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28836" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28837" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28838" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0612" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cit_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_succ_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cit_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_succ_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CRNt7pp" metaid="R_CRNt7pp" name="Carnitine/butyrobetaine antiporter (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CRNt7pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CRNt7pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-100" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96908" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29427" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29428" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29429" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29430" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0040" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_crn_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gbbtn_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_crn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gbbtn_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_EX_ni2_e" metaid="R_EX_ni2_e" name="Ni2+ exchange" reversible="true"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_ni2_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ni2" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ni2_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_no_e" metaid="R_EX_no_e" name="Nitric oxide exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_no_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/no" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_no_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CHLabcpp" metaid="R_CHLabcpp" name="Choline transport via ABC system (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CHLabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CHLabcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96691" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/38715#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/38716#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/38717#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/38718#1" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b2131" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2129" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2128" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2130" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_chol_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_chol_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DGSNt2pp" metaid="R_DGSNt2pp"
-      name="Deoxyguanosine transport in via proton symport (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DGSNt2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DGSNt2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97325" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2964" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dgsn_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dgsn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DINSt2pp" metaid="R_DINSt2pp"
-      name="Deoxyinosine transport in via proton symport (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DINSt2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DINSt2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-108E" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97465" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29971" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29972" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29973" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29974" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2964" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_din_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_din_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DURIt2pp" metaid="R_DURIt2pp"
-      name="Deoxyuridine transport in via proton symport (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DURIt2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DURIt2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-108F" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97820" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29967" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29968" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29969" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29970" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2393" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2964" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_duri_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_duri_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FE2abcpp" metaid="R_FE2abcpp" name="Iron (II) transport via ABC system (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FE2abcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FE2abcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99504" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3409" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fe2_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fe2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FRUptspp" metaid="R_FRUptspp" name="D-fructose transport via PEP:Pyr PTS (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FRUptspp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FRUptspp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99661" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b2169" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2415" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2167" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2416" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fru_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pep_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_f1p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pyr_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_FUCtpp" metaid="R_FUCtpp" name="L-fucose transport via proton symport (periplasm)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FUCtpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FUCtpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-20" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99703" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2801" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fuc__L_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fuc__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FUMt2_2pp" metaid="R_FUMt2_2pp"
-      name="Fumarate transport via proton symport (2 H) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FUMt2_2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FUMt2_2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-121B" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99711" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29331" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29332" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29333" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29334" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3528" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fum_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="2" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fum_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FUMt2_3pp" metaid="R_FUMt2_3pp"
-      name="Fumarate transport via proton symport (3 H) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FUMt2_3pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FUMt2_3pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-299" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99712" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b4123" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4138" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0621" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fum_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="3" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fum_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="3" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FEENTERtonex" metaid="R_FEENTERtonex"
-      name="Fe-enterobactin transport via ton system (extracellular)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FEENTERtonex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FEENTERtonex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99549" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b0584" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3006" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1252" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3005" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_feenter_e" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_feenter_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CSNt2pp" metaid="R_CSNt2pp" name="Cytosine transport in via proton symport (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CSNt2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CSNt2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-116" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-199" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96929" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29935" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29936" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29937" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29938" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0336" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_csn_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_csn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CYNTt2pp" metaid="R_CYNTt2pp" name="Cyanate transport via proton symport (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CYNTt2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CYNTt2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96962" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29231" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29232" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29233" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29234" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0341" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cynt_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cynt_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CYTDt2pp_copy1" metaid="R_CYTDt2pp_copy1" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CYTDt2pp_copy1">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-108B" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97044" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29983" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29984" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29985" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29986" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or>
-            <fbc:geneProductRef fbc:geneProduct="G_b2393" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2964" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cytd_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cytd_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_CYTDt2pp_copy2" metaid="R_CYTDt2pp_copy2" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CYTDt2pp_copy2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-108B" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97044" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29983" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29984" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29985" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29986" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2406" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cytd_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cytd_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DADNt2pp" metaid="R_DADNt2pp"
-      name="Deoxyadenosine transport in via proton symport (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DADNt2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DADNt2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-108C" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97080" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29979" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29980" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29981" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29982" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2393" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2964" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dad_2_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dad_2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DCYTt2pp" metaid="R_DCYTt2pp"
-      name="Deoxycytidine transport in via proton symport (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DCYTt2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DCYTt2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-108D" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97209" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29975" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29976" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29977" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29978" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2393" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2964" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dcyt_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dcyt_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_DDGLCNt2rpp" metaid="R_DDGLCNt2rpp"
-      name="2-dehydro-3-deoxy-D-gluconate transport via proton symport, reversible (periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DDGLCNt2rpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DDGLCNt2rpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-113" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97214" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29943" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29944" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29945" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29946" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3909" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2ddglcn_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2ddglcn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_RMNtex" metaid="R_RMNtex"
-      name="L-rhamnose transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_RMNtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/RMNtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104042" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34995" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34996" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34997" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34998" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_rmn_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_rmn_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_meoh_e" metaid="R_EX_meoh_e" name="Methanol exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_meoh_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/meoh" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_meoh_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MALTTRtexi" metaid="R_MALTTRtexi"
-      name="Maltotriose transport via diffusion (extracellular to periplasm) irreversible" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MALTTRtexi">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MALTTRtexi" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101359" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4036" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_malttr_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_malttr_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MALTTTRtexi" metaid="R_MALTTTRtexi"
-      name="MaltotetraoseMaltotriose transport via diffusion (extracellular to periplasm) irreversible" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MALTTTRtexi">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MALTTTRtexi" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101361" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4036" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_maltttr_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_maltttr_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MALTPTtexi" metaid="R_MALTPTtexi"
-      name="MaltopentaoseMaltotriose transport via diffusion (extracellular to periplasm) irreversible" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MALTPTtexi">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MALTPTtexi" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101356" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4036" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_maltpt_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_maltpt_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MALTtexi" metaid="R_MALTtexi"
-      name="MaltoseMaltotriose transport via diffusion (extracellular to periplasm) irreversible" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MALTtexi">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MALTtexi" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-14351" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-1741" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-575" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101364" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/33171" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/33172" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/33173" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/33174" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4036" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_malt_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_malt_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GLCtex_copy1" metaid="R_GLCtex_copy1" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLCtex_copy1">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-574" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100188" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4036" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glc__D_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glc__D_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FE3DCITtonex" metaid="R_FE3DCITtonex"
-      name="Ferric-dicitrate transport via ton system (extracellular)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FE3DCITtonex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FE3DCITtonex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99509" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b3006" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1252" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3005" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4291" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fe3dcit_e" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fe3dcit_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_PHEtex" metaid="R_PHEtex"
-      name="L-phenylalanine transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PHEtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PHEtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN66-445" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102637" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27950" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27951" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27952" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27953" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_phe__L_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_phe__L_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_PItex" metaid="R_PItex"
-      name="Phosphate transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PItex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PItex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-470" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102871" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/32823" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/32824" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/32825" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/32826" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pi_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ACGAMK" metaid="R_ACGAMK" name="N-acetylglucosamine kinase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ACGAMK">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ACGAMK" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:N-ACETYLGLUCOSAMINE-KINASE-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.1.59" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01201" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95249" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17417" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17418" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17419" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17420" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1119" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_acgam_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_acgam6p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_METS" metaid="R_METS" name="Methionine synthase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_METS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/METS" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.1.1.13" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00946" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101481" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11172" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11173" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11174" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11175" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b4019" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3829" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_5mthf_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_hcys__L_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_met__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_thf_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_EX_cu2_e" metaid="R_EX_cu2_e" name="Cu2+ exchange" reversible="true"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_cu2_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/cu2" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cu2_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CYSabc2pp" metaid="R_CYSabc2pp"
-      name="L-cysteine export via ABC system (cytoplasm to periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CYSabc2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CYSabc2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-3" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.21" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97026" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29783#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29784#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29785#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29786#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/32795#2" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/32796#2" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/32797#2" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/32798#2" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b0887" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0886" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cys__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cys__L_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PRASCSi" metaid="R_PRASCSi" name="Phosphoribosylaminoimidazolesuccinocarboxamide synthase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PRASCSi">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PRASCSi" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:SAICARSYN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/6.3.2.6" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103158" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2476" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_5aizc_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_asp__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_25aics_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_TRSARr" metaid="R_TRSARr" name="Tartronate semialdehyde reductase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_TRSARr">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/TRSARr" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-5289" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.60" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01745" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100682" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18845" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18846" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18847" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18848" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0509" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3125" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2h3oppan_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadh_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glyc__R_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nad_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LYXI" metaid="R_LYXI" name="Lyxose isomerase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LYXI">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LYXI" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/5.3.1.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01906" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101270" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3903" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_lyx__L_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_xylu__L_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_pheme_e" metaid="R_EX_pheme_e" name="Protoheme exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_pheme_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/pheme" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pheme_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_PNTOtex" metaid="R_PNTOtex"
-      name="Pantothenate transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PNTOtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PNTOtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103051" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34975" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34976" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34977" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34978" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pnto__R_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pnto__R_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_PPPNtex" metaid="R_PPPNtex"
-      name="3-phenylpropionate transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PPPNtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PPPNtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-282" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103136" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29747" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29748" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29749" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29750" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pppn_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pppn_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_PPTtex" metaid="R_PPTtex"
-      name="Phosphonate transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PPTtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PPTtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103151" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ppt_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppt_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_PTRCtex" metaid="R_PTRCtex"
-      name="Putrescine transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PTRCtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PTRCtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103339" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ptrc_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ptrc_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_PYRtex" metaid="R_PYRtex"
-      name="Pyruvate transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PYRtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PYRtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-506" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-570" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103384" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pyr_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pyr_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_DSERtex" metaid="R_DSERtex"
-      name="D-serine transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DSERtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DSERtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-495" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97799" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29455" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29456" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29457" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29458" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ser__D_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ser__D_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_SERtex" metaid="R_SERtex"
-      name="L-serine transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_SERtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/SERtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104354" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35031" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35032" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35033" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35034" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ser__L_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ser__L_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_SO4tex" metaid="R_SO4tex"
-      name="Sulfate transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_SO4tex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/SO4tex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104469" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34983" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34984" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34985" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34986" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_so4_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_so4_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_SPMDtex" metaid="R_SPMDtex"
-      name="Spermidine transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_SPMDtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/SPMDtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104495" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35039" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35040" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35041" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35042" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_spmd_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_spmd_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_SUCCtex" metaid="R_SUCCtex"
-      name="Succinate transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_SUCCtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/SUCCtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-552" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104619" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_succ_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_succ_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_SUCRtex" metaid="R_SUCRtex"
-      name="Sucrose transport transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_SUCRtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/SUCRtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104641" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_sucr_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_sucr_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_TARTRtex" metaid="R_TARTRtex"
-      name="Tartrate transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_TARTRtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/TARTRtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104724" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_tartr__L_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_tartr__L_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_TAURtex" metaid="R_TAURtex"
-      name="Taurine transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_TAURtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/TAURtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104733" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_taur_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_taur_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_THRtex" metaid="R_THRtex"
-      name="L-threonine transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_THRtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/THRtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104852" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35019" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35020" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35021" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35022" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_thr__L_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_thr__L_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_THMDtex" metaid="R_THMDtex"
-      name="Thymidine transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_THMDtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/THMDtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104821" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_thymd_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_thymd_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CBIuabcpp" metaid="R_CBIuabcpp"
-      name="Cobinamide transport via ABC system (uptake, periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CBIuabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CBIuabcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-296" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.33" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96467" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b0158" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1711" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1709" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cbi_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cbi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_METDtex" metaid="R_METDtex"
-      name="D-methionine transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_METDtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/METDtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101473" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34911" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34912" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34913" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34914" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_met__D_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_met__D_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_METtex" metaid="R_METtex"
-      name="L-methionine transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_METtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/METtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101493" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_met__L_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_met__L_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_MNLtex" metaid="R_MNLtex"
-      name="Mannitol transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MNLtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MNLtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101678" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mnl_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_mnl_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_NAtex" metaid="R_NAtex"
-      name="Sodium transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NAtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NAtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-189" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101804" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34963" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34964" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34965" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34966" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_na1_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_na1_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_NACtex" metaid="R_NACtex"
-      name="Nicotinic acid transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NACtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NACtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101808" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nac_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nac_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_NH4tex" metaid="R_NH4tex"
-      name="Ammonia transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NH4tex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NH4tex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-9615" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-206" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-544" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101950" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28747" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28748" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28749" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28750" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nh4_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nh4_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_URIH" metaid="R_URIH" name="Uridine hydrolase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_URIH">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/URIH" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:URIDINE-NUCLEOSIDASE-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.2.2.3" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01080" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105161" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15577" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15578" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15579" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15580" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0651" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2162" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0030" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_uri_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_rib__D_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ura_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_XTSNH" metaid="R_XTSNH" name="Xanthosine hydrolase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_XTSNH">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/XTSNH" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-363" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.2.2.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02143" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105245" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27994" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27995" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27996" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27997" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0030" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_xtsn_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_rib__D_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_xan_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_INSH" metaid="R_INSH" name="Inosine hydrolase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_INSH">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/INSH" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:INOSINE-NUCLEOSIDASE-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.2.2.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.2.2.2" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.2.2.8" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01770" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100844" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16657" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16658" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16659" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16660" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0030" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ins_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_hxan_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_rib__D_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_BUTtex" metaid="R_BUTtex"
-      name="Butyrate transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_BUTtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/BUTtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96352" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_but_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_but_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_CHLtex" metaid="R_CHLtex"
-      name="Choline transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CHLtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CHLtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-319" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96693" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/32751" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/32752" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/32753" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/32754" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_chol_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_chol_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_CO2tex" metaid="R_CO2tex"
-      name="CO2 transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CO2tex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CO2tex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-545" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96810" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_co2_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_CRNtex" metaid="R_CRNtex"
-      name="L-carnitine transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CRNtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CRNtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96906" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34959" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34960" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34961" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34962" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_crn_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_crn_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PPK2" metaid="R_PPK2" name="Polyphosphate kinase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PPK2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PPK2" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2501" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ppi_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_DINStex" metaid="R_DINStex"
-      name="Deoxyinosine transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DINStex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DINStex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97466" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_din_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_din_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_DMStex" metaid="R_DMStex"
-      name="Dimethyl sulfide transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DMStex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DMStex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97534" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dms_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dms_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_CSNtex" metaid="R_CSNtex"
-      name="Cytosine transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CSNtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CSNtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96928" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_csn_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_csn_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_CYNTtex" metaid="R_CYNTtex"
-      name="Cyanate transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CYNTtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CYNTtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-14" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96963" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cynt_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cynt_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_CYStex" metaid="R_CYStex"
-      name="L-cysteine transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CYStex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CYStex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-1924" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97029" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29655" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29656" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29657" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29658" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cys__L_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cys__L_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_CYTDtex" metaid="R_CYTDtex"
-      name="Cytidine transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CYTDtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CYTDtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97043" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cytd_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cytd_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_DCAtex" metaid="R_DCAtex"
-      name="Decanoate transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DCAtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DCAtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97181" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dca_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dca_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_DCYTtex" metaid="R_DCYTtex"
-      name="Deoxycytidine transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DCYTtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DCYTtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97208" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0411" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dcyt_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dcyt_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_DGSNtex" metaid="R_DGSNtex"
-      name="Deoxyguanosine transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DGSNtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DGSNtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97324" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dgsn_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dgsn_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MTHFR2" metaid="R_MTHFR2" name="5,10-methylenetetrahydrofolate reductase (NADH)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MTHFR2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MTHFR2" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.5.1.20" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R07168" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101751" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19821" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19822" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19823" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19824" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3941" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mlthf_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadh_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_5mthf_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nad_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ASPO3" metaid="R_ASPO3" name="L-aspartate oxidase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ASPO3">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ASPO3" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96091" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28683" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28684" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28685" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28686" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2574" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_asp__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_q8_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_iasp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_q8h2_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ASPO5" metaid="R_ASPO5" name="L-aspartate oxidase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ASPO5">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ASPO5" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.5.99.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96093" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30043" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30044" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30045" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30046" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2574" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_asp__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fum_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_iasp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_succ_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ASPO4" metaid="R_ASPO4" name="L-aspartate oxidase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ASPO4">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ASPO4" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96092" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29191" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29192" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29193" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29194" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2574" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_asp__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mqn8_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_iasp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_mql8_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ASPO6" metaid="R_ASPO6" name="L-aspartate oxidase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ASPO6">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ASPO6" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.4.3.16" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00481" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96094" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25876" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25877" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25878" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25879" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2574" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_asp__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_o2_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_iasp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_LCTStex" metaid="R_LCTStex"
-      name="Lactose transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LCTStex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LCTStex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101027" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_lcts_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_lcts_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_LEUtex" metaid="R_LEUtex"
-      name="L-leucine transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LEUtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LEUtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN66-447" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101057" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_leu__L_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_leu__L_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_LYStex" metaid="R_LYStex"
-      name="L-lysine transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LYStex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LYStex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-569" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101269" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_lys__L_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_lys__L_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_LYXtex" metaid="R_LYXtex"
-      name="L-Lyxose transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LYXtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LYXtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101272" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_lyx__L_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_lyx__L_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_MANtex" metaid="R_MANtex"
-      name="D-mannose transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MANtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MANtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101402" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_man_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_man_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_MAN6Ptex" metaid="R_MAN6Ptex"
-      name="Mannose 6-phosphate transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MAN6Ptex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MAN6Ptex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101385" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_man6p_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_man6p_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_MELIBtex" metaid="R_MELIBtex"
-      name="Melibiose transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MELIBtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MELIBtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101462" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_melib_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_melib_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_DMSOtex" metaid="R_DMSOtex"
-      name="Dimethyl sulfoxide transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DMSOtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DMSOtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-273" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97533" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29699" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29700" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29701" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29702" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dmso_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dmso_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_DURItex" metaid="R_DURItex"
-      name="Deoxyuridine transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DURItex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DURItex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97819" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0411" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_duri_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_duri_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_mal__D_e" metaid="R_EX_mal__D_e" name="D-Malate exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_mal__D_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/mal__D" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mal__D_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_FRUtex" metaid="R_FRUtex"
-      name="D-fructose transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FRUtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FRUtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99663" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fru_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fru_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_FUCtex" metaid="R_FUCtex"
-      name="L-fucose transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FUCtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FUCtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99704" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fuc__L_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fuc__L_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_FUMtex" metaid="R_FUMtex"
-      name="Fumarate transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FUMtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FUMtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-553" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99715" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fum_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fum_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ACACT5r" metaid="R_ACACT5r" name="Acetyl-CoA C-acyltransferase (decanoyl-CoA) (r)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ACACT5r">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ACACT5r" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.9" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95199" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b3845" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2342" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_accoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dcacoa_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3oddcoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_coa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MALDDH" metaid="R_MALDDH" name="Malate decarboxylating oxidoreductase (decarboxylating)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MALDDH">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MALDDH" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:1.1.1.83-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.83" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00215" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101339" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18365" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18366" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18367" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18368" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1800" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mal__D_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nad_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadh_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pyr_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_FE2tex" metaid="R_FE2tex"
-      name="Iron (II) transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FE2tex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FE2tex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-8" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99505" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28486" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28487" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28488" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28489" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fe2_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fe2_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_NMNtex" metaid="R_NMNtex"
-      name="NMN transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NMNtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NMNtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101972" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28482" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28483" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28484" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28485" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nmn_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nmn_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_NO2tex" metaid="R_NO2tex"
-      name="Nitrite transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NO2tex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NO2tex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-137" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101912" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28983" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28984" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28985" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28986" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_no2_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_no2_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DHPS2" metaid="R_DHPS2" name="Dihydropteroate synthase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DHPS2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DHPS2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:H2PTEROATESYNTH-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.5.1.15" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R03067" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97439" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19949" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19950" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19951" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19952" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3177" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_4abz_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_6hmhptpp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dhpt_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_MTHFC" metaid="R_MTHFC" name="Methenyltetrahydrofolate cyclohydrolase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MTHFC">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MTHFC" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.5.4.9" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01655" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101748" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23700" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23701" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23702" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23703" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0529" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_methf_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_10fthf_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_MTHFD" metaid="R_MTHFD" name="Methylenetetrahydrofolate dehydrogenase (NADP)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MTHFD">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MTHFD" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.5.1.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01220" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101749" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22812" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22813" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22814" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22815" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0529" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mlthf_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_methf_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadph_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_BUTt2rpp" metaid="R_BUTt2rpp"
-      name="Butyrate transport via proton symport, reversible (periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_BUTt2rpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/BUTt2rpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96353" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2223" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_but_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_but_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CADVtpp" metaid="R_CADVtpp" name="Lysine/Cadaverine antiporter (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CADVtpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CADVtpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96445" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4132" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_15dap_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_lys__L_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_15dap_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_lys__L_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_QULNS" metaid="R_QULNS" name="Quinolinate synthase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_QULNS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/QULNS" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.5.1.72" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R04292" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103400" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25888" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25889" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25890" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25891" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0750" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dhap_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_iasp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_quln_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ALKP" metaid="R_ALKP" name="Alkaline phosphatase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ALKP">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ALKP" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-7249" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.2" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01010" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95764" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/51728" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/51729" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/51730" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/51731" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2690" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dhap_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dha_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_GDPtex" metaid="R_GDPtex"
-      name="GDP transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GDPtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GDPtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100096" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gdp_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gdp_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_EX_cobalt2_e" metaid="R_EX_cobalt2_e" name="Co2+ exchange" reversible="true"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_cobalt2_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/cobalt2" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cobalt2_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_TMAtex" metaid="R_TMAtex"
-      name="Trimethylamine transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_TMAtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/TMAtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104884" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_tma_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_tma_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_TMAOtex" metaid="R_TMAOtex"
-      name="Trimethylamine N-oxide transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_TMAOtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/TMAOtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104882" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_tmao_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_tmao_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_TREtex" metaid="R_TREtex"
-      name="Trehalose transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_TREtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/TREtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104933" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17629" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17630" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17631" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17632" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_tre_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_tre_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_L_LACD3" metaid="R_L_LACD3" name="L-Lactate dehydrogenase (menaquinone)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_L_LACD3">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/L_LACD3" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.2.3" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101275" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b0308" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0306" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0307" />
-            </fbc:and>
-            <fbc:geneProductRef fbc:geneProduct="G_b3605" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_lac__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mqn8_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_mql8_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pyr_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_L_LACD2" metaid="R_L_LACD2" name="L-Lactate dehydrogenase (ubiquinone)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_L_LACD2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/L_LACD2" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.2.3" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101273" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b0306" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0308" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0307" />
-            </fbc:and>
-            <fbc:geneProductRef fbc:geneProduct="G_b3605" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_lac__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_q8_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pyr_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_q8h2_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ACACT6r" metaid="R_ACACT6r" name="Acetyl-CoA C-acyltransferase (dodecanoyl-CoA) (r)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ACACT6r">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ACACT6r" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-14268" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.16" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.9" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R03858" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95201" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/31091" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/31092" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/31093" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/31094" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2342" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3845" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_accoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ddcacoa_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3otdcoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_coa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_TRPtex" metaid="R_TRPtex"
-      name="L-tryptophan transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_TRPtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/TRPtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN66-449" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104949" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_trp__L_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_trp__L_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_TSULtex" metaid="R_TSULtex"
-      name="Thiosulfate transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_TSULtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/TSULtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104966" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/32807" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/32808" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/32809" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/32810" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_tsul_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_tsul_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_TYRtex" metaid="R_TYRtex"
-      name="L-tyrosine transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_TYRtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/TYRtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN66-446" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105002" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_tyr__L_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_tyr__L_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_URAtex" metaid="R_URAtex"
-      name="Uracil transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_URAtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/URAtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-560" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105147" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27318" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27319" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27320" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28622" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ura_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ura_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_UREAtex" metaid="R_UREAtex"
-      name="Urea transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_UREAtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/UREAtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-460" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105156" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/32799" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/32800" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/32801" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/32802" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_urea_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_urea_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_URItex" metaid="R_URItex"
-      name="Uridine transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_URItex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/URItex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105165" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0411" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_uri_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_uri_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_VALtex" metaid="R_VALtex"
-      name="L-valine transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_VALtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/VALtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-269" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105190" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29703" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29704" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29705" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29706" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_val__L_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_val__L_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_XANtex" metaid="R_XANtex"
-      name="Xanthine transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_XANtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/XANtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-561" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105226" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_xan_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_xan_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_XYLtex" metaid="R_XYLtex"
-      name="D-xylose transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_XYLtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/XYLtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105270" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_xyl__D_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_xyl__D_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ABUTtex" metaid="R_ABUTtex"
-      name="4-aminobutyrate transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ABUTtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ABUTtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94993" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35035" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35036" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35037" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35038" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_4abut_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_4abut_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FORtppi" metaid="R_FORtppi" name="Formate transport via diffusion (cytoplasm to periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FORtppi">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FORtppi" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-1" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99620" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29679" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29680" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29681" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29682" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0904" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2492" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_for_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_for_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DATPHs" metaid="R_DATPHs" name="DATP amine hydrolysis (spontaneous)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DATPHs">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DATPHs" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97174" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_s0001" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_datp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ditp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nh4_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GLCTR1" metaid="R_GLCTR1" name="Glucosyltransferase I (LPS core synthesis)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLCTR1">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLCTR1" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100226" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3631" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_icolipa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_udpg_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gicolipa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_udp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LIPAabcpp" metaid="R_LIPAabcpp" name="Lipid A transport via ABC system (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LIPAabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LIPAabcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101082" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35251#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35252#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35253#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35254#1" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0914" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_lipa_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_lipa_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LIPACabcpp" metaid="R_LIPACabcpp"
-      name="Lipid (cold) A transport via ABC system (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LIPACabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LIPACabcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101077" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0914" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_lipa_cold_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_lipa_cold_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_GGGABADr" metaid="R_GGGABADr"
-      name="Gamma-glutamyl-gamma aminobutyric acid dehydrogenase" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GGGABADr">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GGGABADr" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.2.1.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R07418" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100113" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28410" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28411" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28412" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28413" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1300" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ggbutal_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gg4abut_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadph_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_mso3_e" metaid="R_EX_mso3_e" name="Methanesulfonate exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_mso3_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/mso3" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mso3_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_23camp_e" metaid="R_EX_23camp_e" name="2',3'-Cyclic AMP exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_23camp_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/23camp" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_23camp_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_23cgmp_e" metaid="R_EX_23cgmp_e" name="2',3'-Cyclic GMP exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_23cgmp_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/23cgmp" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_23cgmp_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_23cump_e" metaid="R_EX_23cump_e" name="2',3'-Cyclic UMP exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_23cump_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/23cump" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_23cump_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_3amp_e" metaid="R_EX_3amp_e" name="3'-AMP exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_3amp_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/3amp" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3amp_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_3gmp_e" metaid="R_EX_3gmp_e" name="3'-GMP exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_3gmp_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/3gmp" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3gmp_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_3ump_e" metaid="R_EX_3ump_e" name="3'-UMP exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_3ump_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/3ump" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3ump_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_glyc__R_e" metaid="R_EX_glyc__R_e" name="(R)-Glycerate exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_glyc__R_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/glyc__R" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glyc__R_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_eca4colipa_e" metaid="R_EX_eca4colipa_e"
-      name="(enterobacterial common antigen)x4 core oligosaccharide lipid A exchange" reversible="false" sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_eca4colipa_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/eca4colipa" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_eca4colipa_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GLYOX3" metaid="R_GLYOX3" name="Glyoxalase III" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLYOX3">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLYOX3" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLYOXIII-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.130" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R09796" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100354" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27754" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27755" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27756" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27757" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1967" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mthgxl_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_lac__D_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FDMO3" metaid="R_FDMO3" name="FMNH2-dependent monooxygenase (ethanesulfonate)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FDMO3">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FDMO3" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99489" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29727" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29728" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29729" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29730" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0935" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ethso3_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fmnh2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_o2_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_acald_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fmn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_so3_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FDMO4" metaid="R_FDMO4" name="FMNH2-dependent monooxygenase (butanesulfonate)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FDMO4">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FDMO4" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.14.14.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99491" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0935" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_butso3_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fmnh2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_o2_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_btal_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fmn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_so3_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_BUTSO3abcpp" metaid="R_BUTSO3abcpp"
-      name="Butanesulfonate transport via ABC system (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_BUTSO3abcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/BUTSO3abcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96350" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b0933" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0934" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0936" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b0365" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0366" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0367" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_butso3_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_butso3_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ETHSO3abcpp" metaid="R_ETHSO3abcpp"
-      name="Ethanesulfonate transport via ABC system (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ETHSO3abcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ETHSO3abcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97977" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b0933" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0934" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0936" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ethso3_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ethso3_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_EX_sel_e" metaid="R_EX_sel_e" name="Selenate exchange" reversible="true"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_sel_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/sel" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_sel_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_hg2_e" metaid="R_EX_hg2_e" name="Hg2+ exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_hg2_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/hg2" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_hg2_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_O16GLCT1" metaid="R_O16GLCT1" name="Glucosyltransferase I (LPS O16 antigen biosynthesis)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_O16GLCT1">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/O16GLCT1" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102086" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2032" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_aragund_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_udpg_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_garagund_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_udp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_O16AP2pp" metaid="R_O16AP2pp" name="O16 antigen polymerase (periplasm)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_O16AP2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/O16AP2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102079" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b2027" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2035" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_o16a2und_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_o16aund_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_o16a3und_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_udcpdp_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_O16AP3pp" metaid="R_O16AP3pp" name="O16 antigen polymerase (periplasm)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_O16AP3pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/O16AP3pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102080" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b2027" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2035" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_o16a3und_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_o16aund_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_o16a4und_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_udcpdp_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_O16A4Lpp" metaid="R_O16A4Lpp" name="O16 anitgen (x4) ligase (periplasm)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_O16A4Lpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/O16A4Lpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102077" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3622" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_colipa_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_o16a4und_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_o16a4colipa_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_udcpdp_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_MALTATr" metaid="R_MALTATr" name="Maltose O-acetyltransferase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MALTATr">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MALTATr" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:MALTACETYLTRAN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.79" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01556" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R06251" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101351" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0459" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_accoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_malt_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_acmalt_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_coa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DHBSH" metaid="R_DHBSH" name="2,3-dihydroxybenzoylserine hydrolase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DHBSH">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DHBSH" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97370" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_23dhbzs_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_23dhb_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ser__L_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ENTERES" metaid="R_ENTERES" name="Enterochelin Esterase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ENTERES">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ENTERES" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-1661" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.1.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97934" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28018" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28019" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28020" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28021" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0585" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_enter_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="3" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_23dhbzs_c" stoichiometry="3" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="3" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FEOXAMUtex" metaid="R_FEOXAMUtex"
-      name="Ferroxamine (minus Fe3) secretion (to extracellular)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FEOXAMUtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FEOXAMUtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99554" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_feoxam_un_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_feoxam_un_e" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ARBTNtpp" metaid="R_ARBTNtpp" name="Aerobactin secretion (to periplasm)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ARBTNtpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ARBTNtpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95931" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_arbtn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_arbtn_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ARBTNtex" metaid="R_ARBTNtex" name="Aerobactin secretion (to extracellular)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ARBTNtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ARBTNtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95929" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_arbtn_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_arbtn_e" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_23CAMPtex" metaid="R_23CAMPtex"
-      name="23cAMP transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_23CAMPtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/23CAMPtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94718" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_23camp_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_23camp_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_23CCMPtex" metaid="R_23CCMPtex"
-      name="23cCMP transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_23CCMPtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/23CCMPtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94720" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_23ccmp_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_23ccmp_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_23CUMPtex" metaid="R_23CUMPtex"
-      name="23cUMP transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_23CUMPtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/23CUMPtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94726" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_23cump_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_23cump_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_23CGMPtex" metaid="R_23CGMPtex"
-      name="23cGMP transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_23CGMPtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/23CGMPtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94721" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_23cgmp_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_23cgmp_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_3AMPtex" metaid="R_3AMPtex"
-      name="3AMP transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_3AMPtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/3AMPtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94857" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3amp_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3amp_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_3CMPtex" metaid="R_3CMPtex"
-      name="3CMP transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_3CMPtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/3CMPtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94861" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3cmp_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3cmp_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LADGMDH" metaid="R_LADGMDH" name="L-alanyl-gamma-D-glutamyl-meso-diaminopimelate hydrolase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LADGMDH">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LADGMDH" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101002" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1326" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_LalaDgluMdap_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_26dap__M_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_LalaDglu_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ALAGLUE" metaid="R_ALAGLUE" name="L-alanyl-gamma-glutamate epimerase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ALAGLUE">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ALAGLUE" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-5228" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/5.1.1.20" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R10938" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95690" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28394" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28395" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28396" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28397" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1325" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_LalaDglu_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_LalaLglu_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FEENTERtpp" metaid="R_FEENTERtpp" name="Enterochelin transport (secretion)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FEENTERtpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FEENTERtpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99550" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29435" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29436" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29437" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29438" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0591" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_enter_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_enter_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FEENTERtex" metaid="R_FEENTERtex" name="Enterochelin transport (secretion periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FEENTERtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FEENTERtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99548" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3035" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_enter_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_enter_e" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FE3HOXUtpp" metaid="R_FE3HOXUtpp"
-      name="Fe(III)hydroxamate unloaded secretion (extracellular)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FE3HOXUtpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FE3HOXUtpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99518" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fe3hox_un_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fe3hox_un_e" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FEOXAMUtpp" metaid="R_FEOXAMUtpp" name="Ferroxamine (minus Fe3) secretion (to periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FEOXAMUtpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FEOXAMUtpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99555" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_feoxam_un_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_feoxam_un_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FECRMUtpp" metaid="R_FECRMUtpp" name="Ferrichrome (minus Fe) secretion (to periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FECRMUtpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FECRMUtpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99534" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fecrm_un_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fecrm_un_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FE3HOXR2" metaid="R_FE3HOXR2" name="Fe(III)hydroxamate reductase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FE3HOXR2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FE3HOXR2" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99515" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fe3hox_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fmnh2_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fe2_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fe3hox_un_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fmn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PTRCt2pp" metaid="R_PTRCt2pp" name="Putrescine transport in via proton symport"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PTRCt2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PTRCt2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-69" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103340" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28891" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28892" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28893" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28894" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1296" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0692" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2014" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ptrc_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ptrc_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GGGABAH" metaid="R_GGGABAH" name="Gamma-glutamyl-gamma-aminobutyric acid hydrolase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GGGABAH">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GGGABAH" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-3942" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.5.1.94" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R07419" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100114" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19737" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19738" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19739" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19740" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1298" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gg4abut_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_4abut_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glu__L_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FRULYSK" metaid="R_FRULYSK" name="Fructoselysine Kinase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FRULYSK">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FRULYSK" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99655" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3374" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_frulys_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_frulysp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FDMO6" metaid="R_FDMO6" name="FMNH2-dependent monooxygenase (sulfoacetate)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FDMO6">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FDMO6" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99495" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29311" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29312" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29313" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29314" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0935" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fmnh2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_o2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_sulfac_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fmn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glx_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_so3_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_SULFACabcpp" metaid="R_SULFACabcpp"
-      name="Sulfoacetate transport via ABC system (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_SULFACabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/SULFACabcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104645" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b0933" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0934" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0936" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_sulfac_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_sulfac_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ETHSO3tex" metaid="R_ETHSO3tex"
-      name="Ethanesulfonate transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ETHSO3tex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ETHSO3tex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97978" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ethso3_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ethso3_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_BUTSO3tex" metaid="R_BUTSO3tex"
-      name="Butanesulfonate transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_BUTSO3tex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/BUTSO3tex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96351" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_butso3_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_butso3_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_LIPOtex" metaid="R_LIPOtex"
-      name="Lipoate transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LIPOtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LIPOtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-278" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101092" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29755" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29756" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29757" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29758" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_lipoate_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_lipoate_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CYANSTpp" metaid="R_CYANSTpp" name="Cyanide sulfurtransferase (periplasmic)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CYANSTpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CYANSTpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:THIOSULFATE-SULFURTRANSFERASE-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.8.1.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01931" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96956" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16881" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16882" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16883" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16884" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1308" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cyan_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_tsul_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_so3_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_tcynt_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MCPST" metaid="R_MCPST" name="3-mercaptopyruvate sulfurtransferase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MCPST">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MCPST" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:MERCAPYSTRANS-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.8.1.2" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R03106" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101422" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21740" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21741" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21742" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21743" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2521" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cyan_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mercppyr_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pyr_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_tcynt_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PHEMEabcpp" metaid="R_PHEMEabcpp" name="Protoheme transport via ABC system (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PHEMEabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PHEMEabcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-162" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.41" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102624" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19261#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19262#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19263#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19264#1" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b2200" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2199" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2198" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2197" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2201" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pheme_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pheme_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_METSOX1abcpp" metaid="R_METSOX1abcpp"
-      name="L-methionine S-oxide transport via ABC system (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_METSOX1abcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/METSOX1abcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-7185" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-7186" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-511" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101482" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_metsox_S__L_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_metsox_S__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_GALBDtex" metaid="R_GALBDtex"
-      name="Beta D-galactose transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GALBDtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GALBDtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99953" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gal_bD_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gal_bD_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LIPAHT2ex" metaid="R_LIPAHT2ex"
-      name="Core oligosaccharide lipid A:hexadecanoate transferase (n-C16:0) (extracellular membrane)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LIPAHT2ex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LIPAHT2ex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101078" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0622" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_colipa_e" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_e" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_hdca_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_e" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_hacolipa_e" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LIPAHTex" metaid="R_LIPAHTex"
-      name="Lipid A:hexadecanoate transferase (n-C16:0) (extracellular membrane)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LIPAHTex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LIPAHTex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101079" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0622" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_e" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_hdca_e" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_lipa_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_e" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_halipa_e" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ECAP1pp" metaid="R_ECAP1pp" name="Enterobacterial common antigen polymerase (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ECAP1pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ECAP1pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97874" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b3785" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3793" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_unagamuf_p" stoichiometry="2" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_eca2und_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_udcpdp_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_UDCPDPpp" metaid="R_UDCPDPpp" name="Undecaprenyl-diphosphatase (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_UDCPDPpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/UDCPDPpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105042" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17069" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17070" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17071" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17072" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b3057" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1278" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0841" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_udcpdp_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_udcpp_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ECAP2pp" metaid="R_ECAP2pp" name="Enterobacterial common antigen polymerase (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ECAP2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ECAP2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97875" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b3785" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3793" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_eca2und_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_unagamuf_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_eca3und_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_udcpdp_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ECA4OALpp" metaid="R_ECA4OALpp"
-      name="Enterobacterial common antigen (x4) O-antigen ligase (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ECA4OALpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ECA4OALpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97873" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3622" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_colipa_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_eca4und_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_eca4colipa_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_udcpdp_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FE3Ri" metaid="R_FE3Ri" name="Fe(III) reduction" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FE3Ri">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FE3Ri" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99524" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30155" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30156" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30157" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30158" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3844" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fadh2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fe3_c" stoichiometry="2" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fad_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fe2_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FE3HOXR3" metaid="R_FE3HOXR3" name="Fe(III)hydroxamate reductase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FE3HOXR3">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FE3HOXR3" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99516" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fe3hox_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_rbflvrd_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fe2_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fe3hox_un_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ribflv_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FEENTERR1" metaid="R_FEENTERR1" name="Fe-enterobactin reduction (Fe(III)-unloading)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FEENTERR1">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FEENTERR1" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99543" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fadh2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_feenter_c" stoichiometry="2" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_enter_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fad_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fe2_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FEENTERR3" metaid="R_FEENTERR3" name="Fe-enterobactin reduction (Fe(III)-unloading)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FEENTERR3">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FEENTERR3" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99545" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_feenter_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_rbflvrd_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_enter_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fe2_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ribflv_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_SULFACtex" metaid="R_SULFACtex"
-      name="Sulfoaceate transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_SULFACtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/SULFACtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104646" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_sulfac_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_sulfac_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_sulfac_e" metaid="R_EX_sulfac_e" name="Sulfoacetate exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_sulfac_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/sulfac" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_sulfac_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_butso3_e" metaid="R_EX_butso3_e" name="Butanesulfonate exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_butso3_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/butso3" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_butso3_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_ethso3_e" metaid="R_EX_ethso3_e" name="Ethanesulfonate exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_ethso3_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ethso3" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ethso3_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NODOy" metaid="R_NODOy" name="Nitric oxide dioxygenase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NODOy">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NODOy" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.14.12.17" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R05725" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101997" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19465" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19466" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19467" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19468" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2552" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_no_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_o2_c" stoichiometry="2" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_no3_c" stoichiometry="2" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GALM2pp" metaid="R_GALM2pp" name="Aldose-1-epimerase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GALM2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GALM2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ALDOSE1EPIM-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/5.1.3.3" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99987" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28675" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28676" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28677" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28678" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0756" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gal_bD_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gal_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CU1abcpp" metaid="R_CU1abcpp" name="Copper (Cu +1) ABC transporter (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CU1abcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CU1abcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-14455" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-207" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.54" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96949" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25792#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25793#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25794#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25795#1" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0484" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cu_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cu_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_HG2abcpp" metaid="R_HG2abcpp" name="Mercury (Hg+2) ABC transporter (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_HG2abcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/HG2abcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100623" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3469" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_hg2_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_hg2_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GLCTR3" metaid="R_GLCTR3" name="Glucosyltransferase III (LPS core synthesis)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLCTR3">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLCTR3" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100228" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3626" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ggagicolipa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_udpg_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gggagicolipa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_udp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_HEPT4" metaid="R_HEPT4" name="Heptosyltransferase IV (LPS core synthesis)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_HEPT4">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/HEPT4" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.4.1.56" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100607" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3623" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_adphep_LD_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gggagicolipa_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_colipa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LA4NTpp" metaid="R_LA4NTpp"
-      name="4-amino-4-deoxy-L-arabinotransferase (LPS lipid A modification, periplasmic face of membrane))" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LA4NTpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LA4NTpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100954" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2257" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_colipa_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_uLa4n_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_acolipa_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_udcpp_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NODOx" metaid="R_NODOx" name="Nitric oxide dioxygenase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NODOx">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NODOx" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.14.12.17" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R05724" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101996" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19469" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19470" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19471" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19472" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2552" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadh_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_no_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_o2_c" stoichiometry="2" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nad_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_no3_c" stoichiometry="2" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_NOtex" metaid="R_NOtex"
-      name="Nitric oxide transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NOtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NOtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101998" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_no_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_no_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_NOtpp" metaid="R_NOtpp" name="NO transport (diffusion)" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NOtpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NOtpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101998" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_s0001" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_no_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_no_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NHFRBO" metaid="R_NHFRBO" name="NADH:flavorubredoxin oxidoreductase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NHFRBO">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NHFRBO" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-14138" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.7.1.14" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02492" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101954" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29607" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29608" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29609" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29610" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b2711" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2710" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadh_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_no_c" stoichiometry="2" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_n2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nad_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_N2Otpp" metaid="R_N2Otpp" name="Nitrious oxide transport (diffusion)" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_N2Otpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/N2Otpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101797" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_s0001" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_n2o_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_n2o_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_N2Otex" metaid="R_N2Otex"
-      name="Nitrious oxide transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_N2Otex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/N2Otex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101797" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_n2o_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_n2o_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CRNt8pp" metaid="R_CRNt8pp" name="L-carnitine/D-carnitine antiporter (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CRNt8pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CRNt8pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96909" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0040" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_crn__D_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_crn_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_crn__D_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_crn_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_CRNt2rpp" metaid="R_CRNt2rpp" name="L-carnitine outward transport (H+ antiport)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CRNt2rpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CRNt2rpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96907" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4111" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_crn_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_crn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_CRNDt2rpp" metaid="R_CRNDt2rpp" name="D-carnitine outward transport (H+ antiport)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CRNDt2rpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CRNDt2rpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96903" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4111" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_crn__D_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_crn__D_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_CTBTt2rpp" metaid="R_CTBTt2rpp" name="Cronobetaine outward transport (H+ antiport)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CTBTt2rpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CTBTt2rpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96939" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4111" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ctbt_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ctbt_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_42A12BOOXpp" metaid="R_42A12BOOXpp"
-      name="4-(2-Aminoethyl)-1,2-benzenediol:oxygen oxidoreductase(deaminating)(flavin-containing)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_42A12BOOXpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/42A12BOOXpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN6666-4" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.4.3.21" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.4.3.4" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.4.9.2" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.4.99.4" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R04300" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94989" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27946" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27947" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27948" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27949" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1386" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dopa_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_o2_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_34dhpac_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o2_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nh4_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_TYROXDApp" metaid="R_TYROXDApp"
-      name="Tyramine:oxygen oxidoreductase(deaminating)(flavin-containing) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_TYROXDApp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/TYROXDApp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-5821" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.4.3.21" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.4.3.4" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.4.9.2" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.4.99.4" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02382" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104996" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30591" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30592" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30593" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30594" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1386" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_o2_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_tym_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_4hoxpacd_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o2_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nh4_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_PACALDt2rpp" metaid="R_PACALDt2rpp"
-      name="Phenylacetaldehyde reversible transport via proton symport (periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PACALDt2rpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PACALDt2rpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102313" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pacald_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pacald_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_PEAMNtex" metaid="R_PEAMNtex"
-      name="Phenethylamine transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PEAMNtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PEAMNtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102462" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29743" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29744" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29745" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29746" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_peamn_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_peamn_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_PACALDtex" metaid="R_PACALDtex"
-      name="Phenethylacetaldehyde transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PACALDtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PACALDtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-284" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102312" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pacald_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pacald_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LIPOt2pp" metaid="R_LIPOt2pp" name="Lipoate transport via proton symport (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LIPOt2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LIPOt2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101091" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_lipoate_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_lipoate_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NTRIR4pp" metaid="R_NTRIR4pp" name="Nitrite Reductase (Menaquinole-8, periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NTRIR4pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NTRIR4pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102065" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29163" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29164" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29165" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29166" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b4072" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4070" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4071" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4073" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mql8_c" stoichiometry="3" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_no2_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_p" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_mqn8_c" stoichiometry="3" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nh4_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NTRIR3pp" metaid="R_NTRIR3pp" name="Nitrite Reductase (Ubiquinole-8, periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NTRIR3pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NTRIR3pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102064" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29155" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29156" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29157" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29158" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b4072" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4070" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4071" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4073" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_no2_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_q8h2_c" stoichiometry="3" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_p" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nh4_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_q8_c" stoichiometry="3" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_INOSTt4pp" metaid="R_INOSTt4pp" name="Na+/myo-inositol symporter (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_INOSTt4pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/INOSTt4pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100840" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3679" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_inost_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_na1_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_inost_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_na1_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PHEMEtiex" metaid="R_PHEMEtiex"
-      name="Protoheme transport irreversible out via diffusion (periplasm to extracellular)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PHEMEtiex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PHEMEtiex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102625" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pheme_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pheme_e" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_AGM3PA" metaid="R_AGM3PA"
-      name="N-Acetyl-D-glucosamine(anhydrous)N-Acetylmuramyl-tripeptide amidase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_AGM3PA">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/AGM3PA" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95543" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0110" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_anhgm3p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_LalaDgluMdap_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_anhgm_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_CYANtex" metaid="R_CYANtex"
-      name="Cyanide transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CYANtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CYANtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96957" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cyan_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cyan_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_SO3tex" metaid="R_SO3tex"
-      name="Sulfite transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_SO3tex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/SO3tex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104460" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_so3_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_so3_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_TCYNTtex" metaid="R_TCYNTtex"
-      name="Thiocyanate transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_TCYNTtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/TCYNTtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104749" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_tcynt_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_tcynt_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ACANTHAT" metaid="R_ACANTHAT" name="Acetyl-CoA:anthranilate acetyltransferase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ACANTHAT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ACANTHAT" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95213" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28550" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28551" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28552" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28553" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1463" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_accoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_anth_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_acanth_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_coa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_METSOX2abcpp" metaid="R_METSOX2abcpp"
-      name="L-methionine R-oxide transport via ABC system (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_METSOX2abcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/METSOX2abcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-7185" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-7186" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-511" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101482" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_metsox_R__L_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_metsox_R__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_METSOX1tex" metaid="R_METSOX1tex" name="L-methionine S-oxide diffusion (extracellular)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_METSOX1tex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/METSOX1tex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101483" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_metsox_S__L_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_metsox_S__L_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_METSOX2tex" metaid="R_METSOX2tex" name="L-methionine R-oxide diffusion (extracellular)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_METSOX2tex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/METSOX2tex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101483" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_metsox_R__L_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_metsox_R__L_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_3UMPtex" metaid="R_3UMPtex"
-      name="3UMP transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_3UMPtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/3UMPtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94983" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3ump_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3ump_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_3GMPtex" metaid="R_3GMPtex"
-      name="3GMP transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_3GMPtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/3GMPtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94868" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3gmp_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3gmp_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_FALDtpp" metaid="R_FALDtpp" name="Formaldehyde transport via diffusion (periplasm)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FALDtpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FALDtpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99238" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_s0001" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fald_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fald_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_tym_e" metaid="R_EX_tym_e" name="Tyramine exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_tym_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/tym" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_tym_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_METSOXR1" metaid="R_METSOXR1" name="L-methionine-S-oxide reductase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_METSOXR1">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/METSOXR1" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:1.8.4.13-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:1.8.4.14-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.8.4.11" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.8.4.13" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.8.4.14" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02025" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R07606" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R07608" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101484" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b3551" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2582" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b2582" />
-              <fbc:geneProductRef fbc:geneProduct="G_b4219" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b3781" />
-              <fbc:geneProductRef fbc:geneProduct="G_b4219" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b3551" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3781" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_metsox_S__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_trdrd_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_met__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_trdox_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_METSOXR2" metaid="R_METSOXR2" name="L-methionine-R-sulfoxide reductase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_METSOXR2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/METSOXR2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:1.8.4.13-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:1.8.4.14-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.8.4.11" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.8.4.13" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.8.4.14" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02025" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R07606" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R07608" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101484" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b1832" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3781" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b2582" />
-              <fbc:geneProductRef fbc:geneProduct="G_b1778" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b3781" />
-              <fbc:geneProductRef fbc:geneProduct="G_b1778" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b1832" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2582" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_metsox_R__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_trdrd_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_met__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_trdox_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DAPAL" metaid="R_DAPAL" name="2,3-diaminopropionate amonnia lyase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DAPAL">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DAPAL" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:4.3.1.15-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.3.1.15" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00195" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97138" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22084" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22085" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22086" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22087" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2871" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_23dappa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nh4_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pyr_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_AMPTASECG" metaid="R_AMPTASECG" name="Alanyl aminopeptidase (cys-gly)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_AMPTASECG">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/AMPTASECG" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-6622" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.4.11.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.4.11.2" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.4.11.23" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.4.13.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.4.13.18" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00899" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95828" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28783" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28784" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28785" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28786" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2523" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0932" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4260" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0237" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cgly_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cys__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gly_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_imp_e" metaid="R_EX_imp_e" name="IMP exchange" reversible="false" sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_imp_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/imp" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_imp_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_DOPAtex" metaid="R_DOPAtex"
-      name="Dopamine transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DOPAtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DOPAtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97758" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dopa_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dopa_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_4HOXPACDtex" metaid="R_4HOXPACDtex"
-      name="4-hydroxyphenylacetaldehyde transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_4HOXPACDtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/4HOXPACDtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95017" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_4hoxpacd_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_4hoxpacd_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LACZpp" metaid="R_LACZpp" name="B-galactosidase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LACZpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LACZpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.2.1.108" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.2.1.23" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01100" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R06114" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101000" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10076" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10077" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10078" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10079" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2132" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_lcts_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gal_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glc__D_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GPDDA1pp" metaid="R_GPDDA1pp"
-      name="Glycerophosphodiester phosphodiesterase (Glycerophosphocholine)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GPDDA1pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GPDDA1pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:3.1.4.2-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.4.2" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.4.46" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01030" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100410" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16061" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16062" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16063" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16064" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2239" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_g3pc_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_chol_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glyc3p_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GPDDA5pp" metaid="R_GPDDA5pp"
-      name="Glycerophosphodiester phosphodiesterase (Glycerophosphoinositol)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GPDDA5pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GPDDA5pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:3.1.4.44-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.4.44" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01193" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100414" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16501" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16502" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16503" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16504" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2239" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_g3pi_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glyc3p_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_inost_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ETHAtex" metaid="R_ETHAtex" name="Ethanolamine transport via diffusion (extracellular)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ETHAtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ETHAtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-476" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97974" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/32747" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/32748" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/32749" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/32750" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_etha_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_etha_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_G3PStex" metaid="R_G3PStex"
-      name="Glycerophosphserine transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_G3PStex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/G3PStex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99893" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_g3ps_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g3ps_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FEENTERR2" metaid="R_FEENTERR2" name="Fe-enterobactin reduction (Fe(III)-unloading)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FEENTERR2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FEENTERR2" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99544" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_feenter_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fmnh2_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_enter_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fe2_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fmn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FLVR" metaid="R_FLVR" name="Flavin reductase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FLVR">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FLVR" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:NADPH-DEHYDROGENASE-FLAVIN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.5.1.30" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.5.1.41" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R05707" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99601" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19377" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19378" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19379" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19380" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b3844" />
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b2764" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2763" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ribflv_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_rbflvrd_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FE3HOXR1" metaid="R_FE3HOXR1" name="Fe(III)hydroxamate reductase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FE3HOXR1">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FE3HOXR1" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99514" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fadh2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fe3hox_c" stoichiometry="2" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fad_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fe2_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fe3hox_un_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FEENTERexs" metaid="R_FEENTERexs" name="Enterobactin Fe(III) binding (spontaneous)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FEENTERexs">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FEENTERexs" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99547" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_s0001" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_enter_e" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fe3_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_feenter_e" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FE3HOXexs" metaid="R_FE3HOXexs"
-      name="Fe(III) hydroxamate Fe-loading reaction (spontaneaous)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FE3HOXexs">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FE3HOXexs" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99520" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_s0001" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fe3_e" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fe3hox_un_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fe3hox_e" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FECRMR3" metaid="R_FECRMR3" name="Ferrichrome reductase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FECRMR3">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FECRMR3" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99532" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fecrm_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_rbflvrd_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fe2_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fecrm_un_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ribflv_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FDMO2" metaid="R_FDMO2" name="FMNH2-dependent monooxygenase (methanesulfonate)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FDMO2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FDMO2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-18086" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.14.14.34" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.14.14.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.14.14.ah" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R10206" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99487" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29307" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29308" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29309" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29310" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0935" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fmnh2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mso3_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_o2_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fald_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fmn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_so3_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LALGP" metaid="R_LALGP" name="L-alanyl-gamma-L-glutamate peptidase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LALGP">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LALGP" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-6981" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.4.13.18" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101011" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29335" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29336" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29337" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29338" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0237" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_LalaLglu_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ala__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glu__L_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_AGM4PApp" metaid="R_AGM4PApp"
-      name="N-Acetyl-D-glucosamine(anhydrous)N-Acetylmuramyl-tetrapeptide amidase (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_AGM4PApp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/AGM4PApp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95546" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2435" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2817" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4169" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0867" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_anhgm4p_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_LalaDgluMdapDala_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_anhgm_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_AGM4PA" metaid="R_AGM4PA"
-      name="N-Acetyl-D-glucosamine(anhydrous)N-Acetylmuramyl-tetrapeptide amidase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_AGM4PA">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/AGM4PA" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95546" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0110" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_anhgm4p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_LalaDgluMdapDala_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_anhgm_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_RNDR3b" metaid="R_RNDR3b" name="Ribonucleoside-diphosphate reductase (CDP) (glutaredoxin)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_RNDR3b">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/RNDR3b" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104065" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b2676" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2675" />
-              <fbc:geneProductRef fbc:geneProduct="G_b1064" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b0849" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2676" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2675" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b2676" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2675" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3610" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b2676" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2675" />
-              <fbc:geneProductRef fbc:geneProduct="G_b1654" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cdp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_grxrd_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dcdp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_grxox_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_RNDR4b" metaid="R_RNDR4b" name="Ribonucleoside-diphosphate reductase (UDP) (glutaredoxin)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_RNDR4b">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/RNDR4b" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104067" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b2676" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2675" />
-              <fbc:geneProductRef fbc:geneProduct="G_b1654" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b0849" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2676" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2675" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b2676" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2675" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3610" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b2676" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2675" />
-              <fbc:geneProductRef fbc:geneProduct="G_b1064" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_grxrd_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_udp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dudp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_grxox_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ACGAL1Ptex" metaid="R_ACGAL1Ptex"
-      name="N-acetyl-D-galactosamine 1-phosphate transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ACGAL1Ptex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ACGAL1Ptex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95234" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_acgal1p_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_acgal1p_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ACGALtex" metaid="R_ACGALtex"
-      name="N-acetyl-D-galactosamine transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ACGALtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ACGALtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95244" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_acgal_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_acgal_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_GLCUR1Ptex" metaid="R_GLCUR1Ptex"
-      name="D-glucuronate 1-phosphate transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLCUR1Ptex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLCUR1Ptex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100231" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glcur1p_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glcur1p_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_UDPGLCURtex" metaid="R_UDPGLCURtex"
-      name="UDP-D-glucuronate transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_UDPGLCURtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/UDPGLCURtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105066" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_udpglcur_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_udpglcur_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_UDPGALPpp" metaid="R_UDPGALPpp" name="UDPgalactose pyrophosphohydrolase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_UDPGALPpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/UDPGALPpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.45" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105060" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0480" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_udpgal_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gal1p_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ump_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_UACGAMPpp" metaid="R_UACGAMPpp"
-      name="UDP-N-acetyl-D-glucosamine pyrophosphohydrolase (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_UACGAMPpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/UACGAMPpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.45" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105020" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0480" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_uacgam_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_acgam1p_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ump_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_UACGALPpp" metaid="R_UACGALPpp"
-      name="UDP-N-acetyl-D-galactosamine pyrophosphohydrolase (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_UACGALPpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/UACGALPpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.45" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105017" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0480" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_udpacgal_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_acgal1p_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ump_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_UGLCURPpp" metaid="R_UGLCURPpp" name="UDP-D-glucuronate pyrophosphohydrolase (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_UGLCURPpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/UGLCURPpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105055" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29559" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29560" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29561" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29562" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0480" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_udpglcur_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glcur1p_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ump_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FEROpp" metaid="R_FEROpp" name="Ferroxidase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FEROpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FEROpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-1483" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.16.3.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00078" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99561" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11148" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11149" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11150" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11151" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11436" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11437" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11438" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11439" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0123" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3336" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fe2_p" stoichiometry="4" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="4" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_o2_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fe3_p" stoichiometry="4" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_p" stoichiometry="2" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ISETACabcpp" metaid="R_ISETACabcpp" name="Isethionate transport via ABC system (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ISETACabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ISETACabcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100880" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b0366" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0365" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0367" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b0934" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0933" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0936" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_isetac_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_isetac_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ISETACtex" metaid="R_ISETACtex"
-      name="Isethionate transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ISETACtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ISETACtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100881" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_isetac_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_isetac_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GUR1PPpp" metaid="R_GUR1PPpp" name="Glucuronate 1-phosphate phosphatase (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GUR1PPpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GUR1PPpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100480" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glcur1p_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glcur_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_UDPGtex" metaid="R_UDPGtex"
-      name="UDPglucose transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_UDPGtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/UDPGtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105071" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_udpg_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_udpg_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ACGAL1PPpp" metaid="R_ACGAL1PPpp" name="N-acetyl-D-galactosamine 1-phosphatase (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ACGAL1PPpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ACGAL1PPpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.10" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95233" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_acgal1p_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_acgal_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_UDPGALtex" metaid="R_UDPGALtex"
-      name="UDPgalactose transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_UDPGALtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/UDPGALtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105061" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_udpgal_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_udpgal_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ACGAM1Ptex" metaid="R_ACGAM1Ptex"
-      name="N-acetyl-D-glucosamine 1-phosphate transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ACGAM1Ptex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ACGAM1Ptex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95246" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_acgam1p_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_acgam1p_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_UACGAMtex" metaid="R_UACGAMtex"
-      name="UDP-N-acetyl-D-glucosamine transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_UACGAMtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/UACGAMtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105021" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_uacgam_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_uacgam_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_UDPACGALtex" metaid="R_UDPACGALtex"
-      name="UDP-N-acetyl-D-galactosamine transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_UDPACGALtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/UDPACGALtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105046" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_udpacgal_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_udpacgal_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_AM4PCP" metaid="R_AM4PCP"
-      name="Anhydrous-N-Acetylmuramyl-tetrapeptide L,D-carboxypeptidase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_AM4PCP">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/AM4PCP" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95794" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1192" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_anhm4p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ala__D_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_anhm3p_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_AM3PA" metaid="R_AM3PA" name="Anhydrous-N-Acetylmuramyl-tripeptide amidase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_AM3PA">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/AM3PA" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95792" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0110" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_anhm3p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_LalaDgluMdap_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_anhm_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_UM4PCP" metaid="R_UM4PCP"
-      name="UDP-N-acetylmuramoyl-L-alanyl-D-gamma-glutamyl-meso-2,6-diaminopimelate-D-alanine L,D-carboxypeptidase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_UM4PCP">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/UM4PCP" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105116" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1192" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_um4p_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ala__D_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ugmd_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_CBLAT" metaid="R_CBLAT" name="Cob(I)alamin adenosyltransferase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CBLAT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CBLAT" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:COBALADENOSYLTRANS-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.5.1.17" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01492" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96476" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1270" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cbl1_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adocbl_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MSO3abcpp" metaid="R_MSO3abcpp"
-      name="Methanesulfonate transport via ABC system (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MSO3abcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MSO3abcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101741" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b0936" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0933" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0934" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mso3_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_mso3_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_MSO3tex" metaid="R_MSO3tex"
-      name="Methanesulfonate transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MSO3tex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MSO3tex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101742" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mso3_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_mso3_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FECRMR1" metaid="R_FECRMR1" name="Ferrichrome reductase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FECRMR1">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FECRMR1" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99530" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fadh2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fecrm_c" stoichiometry="2" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fad_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fe2_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fecrm_un_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FECRMR2" metaid="R_FECRMR2" name="Ferrichrome reductase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FECRMR2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FECRMR2" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99531" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fecrm_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fmnh2_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fe2_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fecrm_un_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fmn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_TDP" metaid="R_TDP" name="Thiamin pyrophosphatase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_TDP">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/TDP" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-3542" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.15" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00615" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104756" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27998" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27999" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28000" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28001" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1134" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_thmpp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_thmmp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_3PEPTabcpp" metaid="R_3PEPTabcpp"
-      name="Tripeptide (LalaDgluMdap) transport via ABC system (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_3PEPTabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/3PEPTabcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94970" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b2178" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2177" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2180" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2179" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b1329" />
-              <fbc:geneProductRef fbc:geneProduct="G_b1247" />
-              <fbc:geneProductRef fbc:geneProduct="G_b1245" />
-              <fbc:geneProductRef fbc:geneProduct="G_b1244" />
-              <fbc:geneProductRef fbc:geneProduct="G_b1246" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b1244" />
-              <fbc:geneProductRef fbc:geneProduct="G_b1247" />
-              <fbc:geneProductRef fbc:geneProduct="G_b1245" />
-              <fbc:geneProductRef fbc:geneProduct="G_b1246" />
-              <fbc:geneProductRef fbc:geneProduct="G_b1243" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_LalaDgluMdap_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_LalaDgluMdap_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_4PEPTabcpp" metaid="R_4PEPTabcpp"
-      name="Tetrapeptide (LalaDgluMdapDala) transport via ABC system (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_4PEPTabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/4PEPTabcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95050" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b1245" />
-              <fbc:geneProductRef fbc:geneProduct="G_b1247" />
-              <fbc:geneProductRef fbc:geneProduct="G_b1243" />
-              <fbc:geneProductRef fbc:geneProduct="G_b1244" />
-              <fbc:geneProductRef fbc:geneProduct="G_b1246" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b2178" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2177" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2180" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2179" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_LalaDgluMdapDala_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_LalaDgluMdapDala_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_AGM3Pt2pp" metaid="R_AGM3Pt2pp"
-      name="GlcNAc-anhMurNAc tripeptide transport in via proton symport (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_AGM3Pt2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/AGM3Pt2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95545" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0433" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_anhgm3p_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_anhgm3p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_AGM4Pt2pp" metaid="R_AGM4Pt2pp"
-      name="GlcNAc-anhMurNAc tetrapeptide transport in via proton symport (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_AGM4Pt2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/AGM4Pt2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95549" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0433" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_anhgm4p_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_anhgm4p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_AGMt2pp" metaid="R_AGMt2pp"
-      name="GlcNAc-anhMurNAc transport in via proton symport (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_AGMt2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/AGMt2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95555" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0433" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_anhgm_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_anhgm_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FECRMexs" metaid="R_FECRMexs" name="Ferrichrome Fe(III)-loading reaction (spontaneous)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FECRMexs">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FECRMexs" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99536" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_s0001" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fe3_e" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fecrm_un_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fecrm_e" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ARBTNR1" metaid="R_ARBTNR1" name="Aerobactin reductase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ARBTNR1">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ARBTNR1" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95924" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_arbtn_fe3_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fadh2_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_arbtn_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fad_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fe2_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ARBTNR2" metaid="R_ARBTNR2" name="Aerobactin reductase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ARBTNR2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ARBTNR2" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95925" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_arbtn_fe3_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fmnh2_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_arbtn_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fe2_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fmn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ARBTNR3" metaid="R_ARBTNR3" name="Aerobactin reductase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ARBTNR3">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ARBTNR3" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95926" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_arbtn_fe3_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_rbflvrd_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_arbtn_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fe2_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ribflv_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ARBTNexs" metaid="R_ARBTNexs" name="Aerobactin Fe-loading reaction (spontaneous)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ARBTNexs">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ARBTNexs" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95928" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_s0001" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_arbtn_e" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fe3_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_arbtn_fe3_e" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FEOXAMexs" metaid="R_FEOXAMexs" name="Ferroxamine Fe3-loading reaction (spontaneous)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FEOXAMexs">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FEOXAMexs" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99557" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_s0001" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fe3_e" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_feoxam_un_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_feoxam_e" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FEOXAMR1" metaid="R_FEOXAMR1" name="Ferroxamine reductase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FEOXAMR1">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FEOXAMR1" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99551" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4367" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fadh2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_feoxam_c" stoichiometry="2" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fad_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fe2_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_feoxam_un_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FEOXAMR2" metaid="R_FEOXAMR2" name="Ferroxamine reductase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FEOXAMR2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FEOXAMR2" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99552" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4367" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_feoxam_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fmnh2_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fe2_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_feoxam_un_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fmn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FEOXAMR3" metaid="R_FEOXAMR3" name="Ferroxamine reductase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FEOXAMR3">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FEOXAMR3" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99553" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4367" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_feoxam_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_rbflvrd_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fe2_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_feoxam_un_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ribflv_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PTHRpp" metaid="R_PTHRpp" name="Phospho-L-threonine phosphatase (periplasmic)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PTHRpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PTHRpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-14505" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103332" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30579" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30580" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30581" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30582" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b4055" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0383" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_thrp_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_thr__L_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ARABDI" metaid="R_ARABDI" name="L-fucose isomerase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ARABDI">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ARABDI" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DARABISOM-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/5.3.1.3" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01577" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95909" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13849" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13850" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13851" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13852" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2802" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_arab__D_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_rbl__D_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_AGt3" metaid="R_AGt3" name="Silver transport out via proton antiport" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_AGt3">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/AGt3" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95620" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b0573" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0572" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0574" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0575" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ag_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ag_e" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CD2t3pp" metaid="R_CD2t3pp"
-      name="Cadmium (Cd+2) transport out via proton antiport (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CD2t3pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CD2t3pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-244" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96497" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28739" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28740" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28741" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28742" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b3915" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0752" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cd2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cd2_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ZNabcpp" metaid="R_ZNabcpp" name="Zinc (Zn+2) transport via ABC system (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ZNabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ZNabcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ABC-63-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105281" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29795" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29796" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29797" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29798" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b1858" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1859" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1857" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_zn2_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_zn2_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_SKMt2pp" metaid="R_SKMt2pp" name="Shikimate transport in via proton symport (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_SKMt2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/SKMt2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-27" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104393" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28971" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28972" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28973" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28974" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1981" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_skm_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_skm_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FE2t2pp" metaid="R_FE2t2pp" name="Iron (II) transport in via proton symport (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FE2t2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FE2t2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-2421" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99501" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29579" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29580" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29581" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29582" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2392" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fe2_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fe2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_R5PPpp" metaid="R_R5PPpp" name="Ribose 5-phosphate phosphatase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_R5PPpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/R5PPpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103410" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b4055" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0383" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_r5p_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_rib__D_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PSP_Lpp" metaid="R_PSP_Lpp" name="Phospho-L-serine phosphatase (periplasmic)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PSP_Lpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PSP_Lpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-5114" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.3" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00582" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103260" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21208" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21209" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21210" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21211" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b4055" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0383" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pser__L_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ser__L_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_TYRPpp" metaid="R_TYRPpp" name="Phospho-L-tyrosine phosphatase (periplasmic)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_TYRPpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/TYRPpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-14534" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104998" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30863" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30864" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30865" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30866" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4055" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_tyrp_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_tyr__L_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_GLYC2Ptex" metaid="R_GLYC2Ptex"
-      name="Glycerol-2-phosphate transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLYC2Ptex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLYC2Ptex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100319" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glyc2p_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glyc2p_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_PSERtex" metaid="R_PSERtex"
-      name="Phospho-L-serine transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PSERtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PSERtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103246" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pser__L_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pser__L_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_R5Ptex" metaid="R_R5Ptex"
-      name="Ribose 5-phosphate transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_R5Ptex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/R5Ptex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103411" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_r5p_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_r5p_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_THRPtex" metaid="R_THRPtex"
-      name="Phospho-L-threonine transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_THRPtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/THRPtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104845" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_thrp_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_thrp_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_TYRPtex" metaid="R_TYRPtex"
-      name="Phopho-L-tyrosine transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_TYRPtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/TYRPtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104999" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_tyrp_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_tyrp_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PAPSR2" metaid="R_PAPSR2" name="Phosphoadenylyl-sulfate reductase (glutaredoxin)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PAPSR2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PAPSR2" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.8.4.8" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102377" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b1064" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2762" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b3610" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2762" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b0849" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2762" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b1654" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2762" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_grxrd_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_paps_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_grxox_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pap_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_so3_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GRXR" metaid="R_GRXR" name="Glutaredoxin reductase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GRXR">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GRXR" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.8.4.2" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100431" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1654" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1064" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3610" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0849" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_grxox_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gthrd_c" stoichiometry="2" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_grxrd_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gthox_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_RNDR1b" metaid="R_RNDR1b" name="Ribonucleoside-diphosphate reductase (ADP) (glutaredoxin)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_RNDR1b">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/RNDR1b" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104061" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b0849" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2676" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2675" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b2676" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2675" />
-              <fbc:geneProductRef fbc:geneProduct="G_b1064" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b2676" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2675" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3610" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b2676" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2675" />
-              <fbc:geneProductRef fbc:geneProduct="G_b1654" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_grxrd_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dadp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_grxox_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_RNDR2b" metaid="R_RNDR2b" name="Ribonucleoside-diphosphate reductase (GDP) (glutaredoxin)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_RNDR2b">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/RNDR2b" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104063" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b2676" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2675" />
-              <fbc:geneProductRef fbc:geneProduct="G_b1654" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b0849" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2676" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2675" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b2676" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2675" />
-              <fbc:geneProductRef fbc:geneProduct="G_b1064" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b2676" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2675" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3610" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gdp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_grxrd_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dgdp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_grxox_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FACOAE181" metaid="R_FACOAE181" name="Fatty-acid-CoA thioesterase (octadecenoate)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FACOAE181">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FACOAE181" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99134" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0452" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_odecoa_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_coa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ocdcea_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FACOAE160" metaid="R_FACOAE160" name="Fatty-acid-CoA thioesterase (hexadecanoate)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FACOAE160">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FACOAE160" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PALMITOYL-COA-HYDROLASE-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.2.2" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.2.22" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01274" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99131" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16645" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16646" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16647" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16648" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0452" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pmtcoa_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_coa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_hdca_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FACOAE140" metaid="R_FACOAE140" name="Fatty-acid-CoA thioesterase (tetradecanoate)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FACOAE140">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FACOAE140" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.2.2" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99129" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0452" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_tdcoa_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_coa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ttdca_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CPGNR1" metaid="R_CPGNR1" name="Coprogen(Fe(III)) reductase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CPGNR1">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CPGNR1" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96868" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cpgn_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fadh2_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cpgn_un_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fad_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fe2_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CPGNR2" metaid="R_CPGNR2" name="Coprogen(Fe(III)) reductase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CPGNR2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CPGNR2" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96869" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cpgn_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fmnh2_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cpgn_un_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fe2_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fmn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CPGNR3" metaid="R_CPGNR3" name="Coprogen(Fe(III)) reductase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CPGNR3">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CPGNR3" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96870" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cpgn_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_rbflvrd_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cpgn_un_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fe2_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ribflv_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CPGNUtpp" metaid="R_CPGNUtpp" name="Coprogen unloaded secretion" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CPGNUtpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CPGNUtpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96872" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cpgn_un_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cpgn_un_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CPGNUtex" metaid="R_CPGNUtex" name="Coprogen unloaded secretion (extracellular)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CPGNUtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CPGNUtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96871" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cpgn_un_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cpgn_un_e" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_AAMYL" metaid="R_AAMYL" name="Alpha-amylase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_AAMYL">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/AAMYL" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95153" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1927" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_14glucan_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_malthx_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_AAMYLpp" metaid="R_AAMYLpp" name="Alpha-amylase (periplasm)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_AAMYLpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/AAMYLpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95153" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3571" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_14glucan_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_malthx_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FACOAL80t2pp" metaid="R_FACOAL80t2pp"
-      name="Fatty-acid-CoA ligase (octanoate transport via vectoral Co-A coupling)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FACOAL80t2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FACOAL80t2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99206" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/51824" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/51825" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/51826" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/51827" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1805" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1701" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_coa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_octa_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_amp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_occoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PPGPPDP" metaid="R_PPGPPDP" name="Guanosine-3',5'-bis(diphosphate) 3'-diphosphatase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PPGPPDP">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PPGPPDP" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PPGPPSYN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.7.2" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00336" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103109" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14253" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14254" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14255" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14256" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3650" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ppgpp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gdp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CPGNabcpp" metaid="R_CPGNabcpp" name="Coprogen transport via ABC system (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CPGNabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CPGNabcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96873" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b0153" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0151" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0152" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cpgn_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cpgn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CPGNexs" metaid="R_CPGNexs" name="Coprogen Fe-loading reaction (spontaneaous)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CPGNexs">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CPGNexs" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96874" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_s0001" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cpgn_un_e" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fe3_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cpgn_e" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_CITtex" metaid="R_CITtex"
-      name="Citrate transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CITtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CITtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96756" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/33183" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/33184" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/33185" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/33186" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cit_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cit_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ACGAtex" metaid="R_ACGAtex"
-      name="N-Acetyl-D-glucosamine transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ACGAtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ACGAtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95252" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_acgam_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_acgam_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DDCAtexi" metaid="R_DDCAtexi"
-      name="Fatty acid (dodecanoate) transport via facilitated irreversible diffusion (extracellular to periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DDCAtexi">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DDCAtexi" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97211" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2344" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ddca_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ddca_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_TTDCAtexi" metaid="R_TTDCAtexi"
-      name="Tetradecanoate transport via facilitated irreversible diffusion (extracellular to periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_TTDCAtexi">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/TTDCAtexi" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99092" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2344" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ttdca_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ttdca_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_HDCAtexi" metaid="R_HDCAtexi"
-      name="Hexadecanoate transport via facilitated irreversible diffusion (extracellular to periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_HDCAtexi">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/HDCAtexi" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99101" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/45256" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/45257" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/45258" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/45259" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2344" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_hdca_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_hdca_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GUACYC" metaid="R_GUACYC" name="Guanylate cyclase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GUACYC">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GUACYC" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GUANYLCYC-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.6.1.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.6.1.2" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00434" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100463" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13665" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13666" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13667" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13668" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gtp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_35cgmp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_23PDE2pp" metaid="R_23PDE2pp"
-      name="2',3'-cyclic-nucleotide phosphodiesterase (UMP) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_23PDE2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/23PDE2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-14091" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.4.16" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R03538" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94723" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27878" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27879" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27880" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27881" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4213" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_23cump_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3ump_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_23PDE4pp" metaid="R_23PDE4pp"
-      name="2',3'-cyclic-nucleotide phosphodiesterase (CMP) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_23PDE4pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/23PDE4pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-14112" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.4.16" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R03929" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94724" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27882" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27883" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27884" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27885" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4213" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_23ccmp_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3cmp_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_23PDE9pp" metaid="R_23PDE9pp"
-      name="2',3'-cyclic-nucleotide phosphodiesterase (GMP) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_23PDE9pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/23PDE9pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-14064" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.4.16" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R05135" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94725" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27858" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27859" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27860" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27861" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4213" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_23cgmp_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3gmp_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ATPHs" metaid="R_ATPHs" name="ATP amine hydrolysis (spontaneous)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ATPHs">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ATPHs" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ATP-DEAMINASE-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.5.4.17" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.5.4.18" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00088" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96130" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13037" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13038" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13039" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13040" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_s0001" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_itp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nh4_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_SARCOX" metaid="R_SARCOX" name="Sarcosine oxidase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_SARCOX">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/SARCOX" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:SARCOX-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.5.3.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00610" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104272" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13313" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13314" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13315" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13316" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1059" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_o2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_sarcs_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fald_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gly_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o2_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GTPHs" metaid="R_GTPHs" name="GTP amine hydrolysis (spontaneous)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GTPHs">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GTPHs" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100459" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_s0001" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gtp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nh4_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_xtp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MN6PP" metaid="R_MN6PP" name="Mannose 6-phosphate phosphatase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MN6PP">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MN6PP" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101671" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28554" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28555" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28556" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28557" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b3697" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0822" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1727" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3826" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_man6p_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_man_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_3KGK" metaid="R_3KGK" name="3-keto-L-gulonate kinase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_3KGK">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/3KGK" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-704" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.1.53" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R07127" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94909" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28222" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28223" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28224" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28225" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3580" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3dhguln_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3dhgulnp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_cd2_e" metaid="R_EX_cd2_e" name="Cadmium exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_cd2_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/cd2" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cd2_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_F6PP" metaid="R_F6PP" name="D-fructose 6-phosphate phosphatase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_F6PP">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/F6PP" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99077" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2293" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3697" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0822" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2690" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3826" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_f6p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fru_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GDPMNH" metaid="R_GDPMNH" name="GDP-mannose mannosyl hydrolase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GDPMNH">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GDPMNH" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100091" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28102" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28103" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28104" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28105" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2051" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gdpmann_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gdp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_man_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FACOAL60t2pp" metaid="R_FACOAL60t2pp"
-      name="Fatty-acid-CoA ligase (hexanoate transport via vectoral Co-A coupling)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FACOAL60t2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FACOAL60t2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99204" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1805" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1701" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_coa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_hxa_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_amp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_hxcoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_IDONt2rpp" metaid="R_IDONt2rpp"
-      name="L-idonate transport via proton symport, reversible (periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_IDONt2rpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/IDONt2rpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-181A" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100803" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29571" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29572" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29573" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29574" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4265" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_idon__L_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_idon__L_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ILEabcpp" metaid="R_ILEabcpp" name="L-isoleucine transport via ABC system (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ILEabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ILEabcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ABC-15-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100821" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29819#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29820#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29821#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29822#1" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b3457" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3455" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3456" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3460" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3454" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ile__L_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ile__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_INDOLEt2pp" metaid="R_INDOLEt2pp"
-      name="Indole transport via proton symport, irreversible (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_INDOLEt2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/INDOLEt2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-142" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100835" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29227" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29228" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29229" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29230" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b3265" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3266" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3035" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_indole_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_indole_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_INSt2pp" metaid="R_INSt2pp" name="Inosine transport in via proton symport (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_INSt2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/INSt2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-108G" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100850" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29963" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29964" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29965" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29966" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2406" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2964" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2393" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ins_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ins_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LYXt2pp" metaid="R_LYXt2pp" name="L-Lyxose transport via proton symport (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LYXt2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LYXt2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-236" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101271" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3907" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_lyx__L_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_lyx__L_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GDPDPK" metaid="R_GDPDPK" name="GDP diphosphokinase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GDPDPK">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GDPDPK" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GDPPYPHOSKIN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.6.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100088" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28098" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28099" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28100" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28101" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2784" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3650" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gdp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_amp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppgpp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_OCDCAtexi" metaid="R_OCDCAtexi"
-      name="Octadecanoate transport via facilitated irreversible diffusion (extracellular to periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_OCDCAtexi">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/OCDCAtexi" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99109" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/39807" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/39808" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/39809" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/39810" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2344" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ocdca_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ocdca_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_OCDCEAtexi" metaid="R_OCDCEAtexi"
-      name="Octadecenoate (n-C18:1) transport via facilitated irreversible diffusion (extracellular to periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_OCDCEAtexi">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/OCDCEAtexi" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99110" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/33655" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/33656" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/33657" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/33658" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2344" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ocdcea_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ocdcea_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_G6Ptex" metaid="R_G6Ptex"
-      name="Glucose 6-phosphate transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_G6Ptex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/G6Ptex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99915" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_g6p_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g6p_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_TUNGSabcpp" metaid="R_TUNGSabcpp" name="Tungstate transport via ABC system (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_TUNGSabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/TUNGSabcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-242B" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.55" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104978" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35027#2" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35028#2" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35029#2" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35030#2" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b0765" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0764" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0763" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_tungs_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_tungs_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MOBDabcpp" metaid="R_MOBDabcpp" name="Molybdate transport via ABC system (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MOBDabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MOBDabcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:3.6.3.29-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ABC-19-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.29" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101689" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22020#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22021#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22022#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22023#1" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b2424" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2422" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2423" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3917" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b0765" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0764" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0763" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b2423" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2425" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2422" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2424" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mobd_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_mobd_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_MOBDtex" metaid="R_MOBDtex"
-      name="Molybdate transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MOBDtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MOBDtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101690" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34907" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34908" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34909" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34910" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mobd_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_mobd_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NI2uabcpp" metaid="R_NI2uabcpp" name="Nickel transport via ABC system (uptake, periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NI2uabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NI2uabcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:3.6.3.24-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ABC-20-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.24" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101959" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15557#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15558#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15559#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15560#1" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b3477" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3476" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3480" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3479" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3478" />
-            </fbc:and>
-            <fbc:geneProductRef fbc:geneProduct="G_b4242" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ni2_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ni2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_NI2tex" metaid="R_NI2tex"
-      name="Nickel transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NI2tex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NI2tex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-141B" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101958" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29831" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29832" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29833" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29834" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ni2_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ni2_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_R1PK" metaid="R_R1PK" name="Ribose 1-phosphokinase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_R1PK">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/R1PK" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-1402" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103408" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29775" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29776" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29777" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29778" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_r1p_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_r15bp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_R15BPK" metaid="R_R15BPK" name="Ribose-1,5-bisphosphokinase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_R15BPK">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/R15BPK" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-1401" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.4.23" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R06836" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103407" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20109" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20110" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20111" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20112" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4094" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_r15bp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_prpp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_Kabcpp" metaid="R_Kabcpp" name="Potassium ABC transporter (periplasm)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_Kabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/Kabcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:3.6.3.10-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:3.6.3.12-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-2" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.10" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.12" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100657" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16777#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16778#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16779#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16780#1" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b0697" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0698" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0696" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b0697" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0698" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0696" />
-              <fbc:geneProductRef fbc:geneProduct="G_b4513" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_k_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_k_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LEUabcpp" metaid="R_LEUabcpp" name="L-leucine transport via ABC system (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LEUabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LEUabcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ABC-35-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101054" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29807#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29808#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29809#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29810#1" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b3454" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3460" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3455" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3457" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3456" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b3457" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3456" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3458" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3455" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3454" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_leu__L_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_leu__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_L_LACt2rpp" metaid="R_L_LACt2rpp"
-      name="L-lactate reversible transport via proton symport (periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_L_LACt2rpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/L_LACt2rpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-104" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101277" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29415" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29416" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29417" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29418" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b3603" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2975" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_lac__L_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_lac__L_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MALt2_2pp" metaid="R_MALt2_2pp"
-      name="Malate transport via proton symport (2 H) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MALt2_2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MALt2_2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-121A" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101370" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29339" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29340" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29341" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29342" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3528" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mal__L_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_mal__L_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MALt2_3pp" metaid="R_MALt2_3pp"
-      name="Malate transport via proton symport (3 H) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MALt2_3pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MALt2_3pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101371" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b4123" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4138" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="3" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mal__L_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="3" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_mal__L_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MALTabcpp" metaid="R_MALTabcpp" name="Maltose transport via ABC system (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MALTabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MALTabcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:3.6.3.19-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ABC-16-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.19" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101362" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22132#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22133#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22134#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22135#1" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b4032" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4033" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4035" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4034" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_malt_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_malt_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MALTHXabcpp" metaid="R_MALTHXabcpp"
-      name="Maltohexaose transport via ABC system (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MALTHXabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MALTHXabcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101353" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b4033" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4034" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4032" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4035" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_malthx_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_malthx_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MALTPTabcpp" metaid="R_MALTPTabcpp"
-      name="Maltopentaose transport via ABC system (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MALTPTabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MALTPTabcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101355" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b4033" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4035" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4032" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4034" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_maltpt_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_maltpt_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MALTTRabcpp" metaid="R_MALTTRabcpp" name="Maltotriose transport via ABC system (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MALTTRabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MALTTRabcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-503" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101358" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b4033" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4034" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4035" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4032" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_malttr_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_malttr_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MALTTTRabcpp" metaid="R_MALTTTRabcpp"
-      name="Maltotetraose transport via ABC system (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MALTTTRabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MALTTTRabcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-504" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101360" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b4034" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4033" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4032" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4035" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_maltttr_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_maltttr_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MAN6Pt6_2pp" metaid="R_MAN6Pt6_2pp"
-      name="Mannose-6-phosphate transport via phosphate antiport (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MAN6Pt6_2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MAN6Pt6_2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101384" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3666" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_man6p_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pi_c" stoichiometry="2" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_man6p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_p" stoichiometry="2" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MANGLYCptspp" metaid="R_MANGLYCptspp"
-      name="2-O-alpha-mannosyl-D-glycerate transport via PEP:Pyr PTS (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MANGLYCptspp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MANGLYCptspp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101394" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b0731" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2415" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2416" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_manglyc_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pep_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_man6pglyc_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pyr_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MELIBt2pp" metaid="R_MELIBt2pp" name="Melibiose transport in via symport (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MELIBt2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MELIBt2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-94" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101460" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28855" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28856" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28857" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28858" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b4120" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0343" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_melib_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_melib_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_METabcpp" metaid="R_METabcpp" name="L-methionine transport via ABC system (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_METabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/METabcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-4522" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101489" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29779#2" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29780#2" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29781#2" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29782#2" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/32827#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/32828#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/32829#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/32830#1" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b0197" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0198" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0199" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_met__L_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_met__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_fe3hox_un_e" metaid="R_EX_fe3hox_un_e" name="Fe(III)hydoxamate, unloaded exchange"
-      reversible="false" sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_fe3hox_un_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/fe3hox_un" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fe3hox_un_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GGPTRCS" metaid="R_GGPTRCS" name="Gamma glutamyl putrescine synthase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GGPTRCS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GGPTRCS" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/6.3.1.11" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100132" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1297" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glu__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ptrc_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ggptrc_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_23dappa_e" metaid="R_EX_23dappa_e" name="2,3-diaminopropionate exchange"
-      reversible="false" sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_23dappa_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/23dappa" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_23dappa_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_RMNtpp" metaid="R_RMNtpp" name="L-rhamnose transport via proton symport (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_RMNtpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/RMNtpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-112" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104041" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29947" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29948" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29949" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29950" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3907" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_rmn_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_rmn_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_SERt4pp" metaid="R_SERt4pp" name="L-serine via sodium symport (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_SERt4pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/SERt4pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-4083" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104346" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29575" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29576" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29577" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29578" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3089" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_na1_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ser__L_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_na1_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ser__L_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_SUCCt2_3pp" metaid="R_SUCCt2_3pp"
-      name="Succintate transport via proton symport (3 H) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_SUCCt2_3pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/SUCCt2_3pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-300" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104621" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b4123" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4138" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="3" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_succ_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="3" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_succ_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MNLptspp" metaid="R_MNLptspp" name="Mannitol transport via PEP:Pyr PTS (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MNLptspp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MNLptspp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101677" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b2933" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2415" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2934" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2416" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b3599" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2415" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2416" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b2703" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2704" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2415" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2702" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2416" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mnl_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pep_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_mnl1p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pyr_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NAt3_1p5pp" metaid="R_NAt3_1p5pp" name="Sodium proton antiporter (H:NA is 1.5) (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NAt3_1p5pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NAt3_1p5pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-130" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101914" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29247" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29248" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29249" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29250" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1186" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="3" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_na1_c" stoichiometry="2" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="3" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_na1_p" stoichiometry="2" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NAt3_2pp" metaid="R_NAt3_2pp" name="Sodium proton antiporter (H:NA is 2) (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NAt3_2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NAt3_2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-129" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101915" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29251" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29252" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29253" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29254" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0019" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_na1_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_na1_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_NH4tpp" metaid="R_NH4tpp" name="Ammonia reversible transport (periplasm)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NH4tpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NH4tpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-9615" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-206" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-544" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101950" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28747" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28748" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28749" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28750" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_s0001" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0451" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nh4_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nh4_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NMNPtpp" metaid="R_NMNPtpp" name="NMN permease (periplasm)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NMNPtpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NMNPtpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101972" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28482" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28483" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28484" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28485" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0751" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nmn_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nmn_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_NO2t2rpp" metaid="R_NO2t2rpp"
-      name="Nitrite transport in via proton symport, reversible (periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NO2t2rpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NO2t2rpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101984" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1223" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3367" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_no2_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_no2_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NO3t7pp" metaid="R_NO3t7pp" name="Nitrate transport in via nitrite antiport (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NO3t7pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NO3t7pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-239" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101995" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28743" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28744" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28745" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28746" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1223" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1469" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_no2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_no3_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_no2_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_no3_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ORNabcpp" metaid="R_ORNabcpp" name="Ornithine transport via ABC system (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ORNabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ORNabcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ABC-37-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.21" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102222" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29883#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29884#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29885#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29886#1" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b2306" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2307" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2308" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2310" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_orn_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_orn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PIuabcpp" metaid="R_PIuabcpp" name="Phosphate transport via ABC system (uptake, periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PIuabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PIuabcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ABC-27-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.27" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102870" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24440#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24441#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24442#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24443#1" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b3728" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3725" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3727" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3726" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pi_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="2" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PNTOt4pp" metaid="R_PNTOt4pp" name="Pantothenate sodium symporter (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PNTOt4pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PNTOt4pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-117" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103054" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29927" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29928" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29929" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29930" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3258" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_na1_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pnto__R_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_na1_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pnto__R_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_FRULYSDG" metaid="R_FRULYSDG" name="Fructoselysine phosphate deglycase"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FRULYSDG">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FRULYSDG" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99653" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3371" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_frulysp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g6p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_lys__L_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_METDabcpp" metaid="R_METDabcpp" name="D-methionine transport via ABC system (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_METDabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/METDabcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-202" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101472" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29767#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29768#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29769#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29770#1" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b0199" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0198" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0197" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_met__D_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_met__D_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PROabcpp" metaid="R_PROabcpp" name="L-proline transport via ABC system (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PROabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PROabcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ABC-26-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103210" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29815#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29816#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29817#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29818#1" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b2678" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2677" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2679" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pro__L_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pro__L_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_PROt2rpp" metaid="R_PROt2rpp"
-      name="L-proline reversible transport via proton symport (periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PROt2rpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PROt2rpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-29" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103211" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28963" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28964" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28965" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28966" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b4111" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0402" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pro__L_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pro__L_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PROt4pp" metaid="R_PROt4pp" name="Na+/Proline-L symporter (periplasm)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PROt4pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PROt4pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-118" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103197" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28967" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28968" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28969" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28970" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1015" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_na1_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pro__L_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_na1_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pro__L_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PTRCabcpp" metaid="R_PTRCabcpp" name="Putrescine transport via ABC system (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PTRCabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PTRCabcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ABC-25-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.31" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103338" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29995#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29996#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29997#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29998#1" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b1441" />
-              <fbc:geneProductRef fbc:geneProduct="G_b1440" />
-              <fbc:geneProductRef fbc:geneProduct="G_b1442" />
-              <fbc:geneProductRef fbc:geneProduct="G_b1443" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b0857" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0854" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0855" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0856" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b1124" />
-              <fbc:geneProductRef fbc:geneProduct="G_b1125" />
-              <fbc:geneProductRef fbc:geneProduct="G_b1126" />
-              <fbc:geneProductRef fbc:geneProduct="G_b1123" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ptrc_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ptrc_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ASNNpp" metaid="R_ASNNpp" name="L-asparaginase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ASNNpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ASNNpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ASPARAGHYD-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.5.1.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.5.1.38" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.5.5.4" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00485" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96056" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21016" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21017" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21018" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21019" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2957" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_asn__L_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_asp__L_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nh4_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GLUNpp" metaid="R_GLUNpp" name="Glutaminase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLUNpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLUNpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLUTAMIN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.4.1.13" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.4.7.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.5.1.2" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.5.1.38" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.3.3.6" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/6.3.4.2" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/6.3.5.2" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/6.3.5.4" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/6.3.5.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00256" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100030" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15889" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15890" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15891" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15892" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2957" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gln__L_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glu__L_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nh4_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NTD12" metaid="R_NTD12" name="5'-nucleotidase (dIMP)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NTD12">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NTD12" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102031" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29383" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29384" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29385" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29386" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b3399" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2744" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2291" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2361" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dimp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_din_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FECRMtonex" metaid="R_FECRMtonex"
-      name="Ferrichrome transport via ton system (extracellular)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FECRMtonex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FECRMtonex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99537" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b3006" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1252" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3005" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0150" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fecrm_e" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fecrm_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ARBTNtonex" metaid="R_ARBTNtonex"
-      name="Aerobactin transport via ton system (extracellular)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ARBTNtonex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ARBTNtonex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95930" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_arbtn_fe3_e" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_arbtn_fe3_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ADOCBLabcpp" metaid="R_ADOCBLabcpp"
-      name="Adenosylcobalamin transport via ABC system (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ADOCBLabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ADOCBLabcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95471" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b0158" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1709" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1711" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_adocbl_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adocbl_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_enter_e" metaid="R_EX_enter_e" name="Enterochelin exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_enter_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/enter" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_enter_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_fecrm_un_e" metaid="R_EX_fecrm_un_e" name="Ferrichrome minus Fe(III) exchange"
-      reversible="false" sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_fecrm_un_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/fecrm_un" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fecrm_un_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_cgly_e" metaid="R_EX_cgly_e" name="Cys-Gly exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_cgly_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/cgly" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cgly_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_chtbs_e" metaid="R_EX_chtbs_e" name="Chitobiose exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_chtbs_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/chtbs" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_chtbs_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_gmp_e" metaid="R_EX_gmp_e" name="GMP exchange" reversible="false" sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_gmp_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/gmp" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gmp_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_h2o2_e" metaid="R_EX_h2o2_e" name="Hydrogen peroxide exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_h2o2_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/h2o2" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o2_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_ump_e" metaid="R_EX_ump_e" name="UMP exchange" reversible="false" sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_ump_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ump" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ump_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_pydam_e" metaid="R_EX_pydam_e" name="Pyridoxamine exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_pydam_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/pydam" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pydam_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CRNabcpp" metaid="R_CRNabcpp" name="L-carnitine transport via ABC system (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CRNabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CRNabcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96905" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/38719#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/38720#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/38721#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/38722#1" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b2677" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2679" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2678" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_crn_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_crn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CRNDabcpp" metaid="R_CRNDabcpp" name="D-carnitine transport via ABC system (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CRNDabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CRNDabcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96902" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b2677" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2679" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2678" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_crn__D_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_crn__D_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DNTPPA" metaid="R_DNTPPA" name="Dihydroneopterin triphosphate pyrophosphatase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DNTPPA">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DNTPPA" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:H2NEOPTERINP3PYROPHOSPHOHYDRO-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.67" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R04638" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97680" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25302" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25303" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25304" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25305" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1865" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0099" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ahdt_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dhpmp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CTBTabcpp" metaid="R_CTBTabcpp" name="Crotonobetaine transport via ABC system (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CTBTabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CTBTabcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96938" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b2677" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2678" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2679" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ctbt_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ctbt_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NTPP9" metaid="R_NTPP9" name="Nucleoside triphosphate pyrophosphorylase (itp)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NTPP9">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NTPP9" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-6382" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.8" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.9" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00720" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102056" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29399" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29400" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29401" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29402" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2954" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_itp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_imp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NTPP10" metaid="R_NTPP10" name="Nucleoside triphosphate pyrophosphorylase (ditp)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NTPP10">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NTPP10" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-1602" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.66" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R03531" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102050" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28342" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28343" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28344" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28345" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2954" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ditp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dimp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NTPP11" metaid="R_NTPP11" name="Nucleoside triphosphate pyrophosphorylase (xtp)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NTPP11">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NTPP11" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-1603" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.66" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02720" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102051" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28610" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28611" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28612" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28613" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2954" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_xtp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_xmp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NTD10pp" metaid="R_NTD10pp" name="5'-nucleotidase (XMP)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NTD10pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NTD10pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:XMPXAN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02719" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102029" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28530" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28531" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28532" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28533" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b4055" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0480" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_xmp_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_xtsn_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NTD1pp" metaid="R_NTD1pp" name="5'-nucleotidase (dUMP)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NTD1pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NTD1pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-14143" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.89" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02102" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102028" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29355" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29356" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29357" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29358" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0480" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4055" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dump_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_duri_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NTD2pp" metaid="R_NTD2pp" name="5'-nucleotidase (UMP)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NTD2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NTD2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-14025" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00963" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102032" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29359" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29360" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29361" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29362" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0480" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4055" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0383" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ump_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_uri_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NTD3pp" metaid="R_NTD3pp" name="5'-nucleotidase (dCMP)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NTD3pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NTD3pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-5292" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.89" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01664" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102033" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29363" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29364" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29365" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29366" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0480" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4055" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dcmp_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dcyt_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NTD4pp" metaid="R_NTD4pp" name="5'-nucleotidase (CMP)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NTD4pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NTD4pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-14026" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.91" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00511" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102034" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29367" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29368" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29369" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29370" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b4055" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0480" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0383" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cmp_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cytd_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NTD5pp" metaid="R_NTD5pp" name="5'-nucleotidase (dTMP)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NTD5pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NTD5pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:THYMIDYLATE-5-PHOSPHATASE-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.35" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.89" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01569" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102035" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11080" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11081" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11082" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11083" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b4055" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0480" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dtmp_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_thymd_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NTD6pp" metaid="R_NTD6pp" name="5'-nucleotidase (dAMP)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NTD6pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NTD6pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-14161" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.89" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02088" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102036" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29371" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29372" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29373" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29374" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0480" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4055" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_damp_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dad_2_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NTD7pp" metaid="R_NTD7pp" name="5'-nucleotidase (AMP)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NTD7pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NTD7pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:AMP-DEPHOSPHORYLATION-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00183" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102037" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29375" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29376" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29377" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29378" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b4055" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0480" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0383" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_amp_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adn_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NTD9pp" metaid="R_NTD9pp" name="5'-nucleotidase (GMP)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NTD9pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NTD9pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-7609" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01227" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100381" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27714" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27715" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27716" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27717" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b4055" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0480" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0383" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gmp_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gsn_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PEAMNOpp" metaid="R_PEAMNOpp" name="Phenethylamine oxidase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PEAMNOpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PEAMNOpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:AMINEPHEN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-10817" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.4.3.21" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.4.3.4" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.4.3.6" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02613" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102461" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25265" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25266" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25267" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25268" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1386" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_o2_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_peamn_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o2_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nh4_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pacald_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GAL1PPpp" metaid="R_GAL1PPpp" name="D-galactose 1-phosphatase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GAL1PPpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GAL1PPpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-14938" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.94" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R10622" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99922" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29315" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29316" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29317" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29318" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1002" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gal1p_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gal_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_H2O2tex" metaid="R_H2O2tex" name="Hydrogen peroxide transport via diffusion (external)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_H2O2tex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/H2O2tex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-284" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-572" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR98640" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o2_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o2_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ARGDCpp" metaid="R_ARGDCpp" name="Arginine decarboxylase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ARGDCpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ARGDCpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ARGDECARBOX-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.1.1.19" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00566" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95940" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17641" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17642" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17643" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17644" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2938" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_arg__L_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_agm_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ALLPI" metaid="R_ALLPI" name="Allose 6-phosphate isomerase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ALLPI">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ALLPI" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/5.3.1.6" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R09030" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95766" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28430" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28431" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28432" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28433" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4090" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_all6p_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_allul6p_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ALLK" metaid="R_ALLK" name="Allose kinase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ALLK">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ALLK" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.1.55" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R03576" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95765" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4084" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_all__D_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_all6p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ALLULPE" metaid="R_ALLULPE" name="Allulose 6-phosphate epimerase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ALLULPE">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ALLULPE" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-304" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/5.1.3.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R09031" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95774" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4085" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_allul6p_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_f6p_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ADEtex" metaid="R_ADEtex"
-      name="Adenine transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ADEtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ADEtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-577" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95445" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ade_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ade_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ADNtex" metaid="R_ADNtex"
-      name="Adenosine transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ADNtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ADNtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95460" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0411" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_adn_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adn_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_AGMtex" metaid="R_AGMtex"
-      name="Agmatine transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_AGMtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/AGMtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95556" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_agm_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_agm_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ALAtex" metaid="R_ALAtex"
-      name="L-alanine transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ALAtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ALAtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95706" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ala__L_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ala__L_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_BALAtex" metaid="R_BALAtex"
-      name="Beta-alanine transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_BALAtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/BALAtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95682" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ala_B_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ala_B_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_DALAtex" metaid="R_DALAtex"
-      name="D-Alanine transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DALAtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DALAtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95702" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ala__D_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ala__D_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_AMPtex" metaid="R_AMPtex"
-      name="AMP transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_AMPtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/AMPtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95830" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_amp_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_amp_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ARBtex" metaid="R_ARBtex"
-      name="L-arabinose transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ARBtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ARBtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95913" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_arab__L_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_arab__L_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ARGtex" metaid="R_ARGtex"
-      name="L-arginine transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ARGtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ARGtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN66-448" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95951" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/32143" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/32144" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/32145" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/32146" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_arg__L_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_arg__L_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ASCBtex" metaid="R_ASCBtex"
-      name="L-ascorbate transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ASCBtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ASCBtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96048" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ascb__L_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ascb__L_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FACOAL100t2pp" metaid="R_FACOAL100t2pp"
-      name="Fatty-acid-CoA ligase (decanoate transport via vectoral Co-A coupling)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FACOAL100t2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FACOAL100t2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99142" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1805" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1701" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_coa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dca_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_amp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dcacoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_RIBabcpp" metaid="R_RIBabcpp" name="D-ribose transport via ABC system (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_RIBabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/RIBabcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ABC-28-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.17" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104034" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29903#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29904#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29905#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29906#1" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b3749" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3750" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3751" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3748" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b4485" />
-              <fbc:geneProductRef fbc:geneProduct="G_b4230" />
-              <fbc:geneProductRef fbc:geneProduct="G_b4227" />
-              <fbc:geneProductRef fbc:geneProduct="G_b4231" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b4086" />
-              <fbc:geneProductRef fbc:geneProduct="G_b4088" />
-              <fbc:geneProductRef fbc:geneProduct="G_b4087" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_rib__D_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_rib__D_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GPDDA3pp" metaid="R_GPDDA3pp"
-      name="Glycerophosphodiester phosphodiesterase (Glycerophosphoserine)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GPDDA3pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GPDDA3pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-14136" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.4.46" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100412" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29875" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29876" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29877" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29878" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2239" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_g3ps_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glyc3p_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ser__L_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GPDDA4pp" metaid="R_GPDDA4pp"
-      name="Glycerophosphodiester phosphodiesterase (Glycerophosphoglycerol)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GPDDA4pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GPDDA4pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-14073" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.4.46" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100413" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2239" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_g3pg_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glyc3p_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glyc_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GPDDA2pp" metaid="R_GPDDA2pp"
-      name="Glycerophosphodiester phosphodiesterase (Glycerophosphoethanolamine)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GPDDA2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GPDDA2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-14160" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.4.2" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.4.46" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01470" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100411" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29319" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29320" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29321" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29322" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2239" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_g3pe_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_etha_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glyc3p_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FACOAL120t2pp" metaid="R_FACOAL120t2pp"
-      name="Fatty-acid-CoA ligase (dodecanoate transport via vectoral Co-A coupling)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FACOAL120t2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FACOAL120t2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99144" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1701" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1805" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_coa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ddca_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_amp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ddcacoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FACOAL140t2pp" metaid="R_FACOAL140t2pp"
-      name="Fatty-acid-CoA ligase (tetradecanoate transport via vectoral Co-A coupling)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FACOAL140t2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FACOAL140t2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99147" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1701" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1805" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_coa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ttdca_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_amp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_tdcoa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FE3HOXtonex" metaid="R_FE3HOXtonex"
-      name="Fe(III)hydroxamine transport via ton system (extracellular)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FE3HOXtonex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FE3HOXtonex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99521" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b3006" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1252" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3005" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0150" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fe3hox_e" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fe3hox_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CU2abcpp" metaid="R_CU2abcpp" name="Copper (Cu+2) ABC transporter (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CU2abcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CU2abcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:3.6.3.4-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-178" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.4" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96950" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10376#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10377#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10378#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10379#1" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3469" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cu2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cu2_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_COBALT2abcpp" metaid="R_COBALT2abcpp" name="Cobalt (Co+2) ABC transporter (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_COBALT2abcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/COBALT2abcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96819" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/32779#2" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/32780#2" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/32781#2" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/32782#2" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3469" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cobalt2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cobalt2_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NI2abcpp" metaid="R_NI2abcpp" name="Nickle (Ni+2) ABC transporter (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NI2abcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NI2abcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.24" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101955" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15557#2" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15558#2" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15559#2" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15560#2" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3469" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ni2_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ni2_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MG2uabcpp" metaid="R_MG2uabcpp" name="Magnesium (Mg+2) ABC transporter (ubtake, periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MG2uabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MG2uabcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:3.6.3.2-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-250" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.2" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101505" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10260#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10261#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10262#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10263#1" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4242" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mg2_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_mg2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_HCYSMT2" metaid="R_HCYSMT2" name="Homocysteine Methyltransferase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_HCYSMT2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/HCYSMT2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:MMUM-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.1.1.10" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R11063" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100578" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/26337" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/26338" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/26339" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/26340" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0261" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_hcys__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mmet_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_met__L_c" stoichiometry="2" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_MMETtex" metaid="R_MMETtex"
-      name="S-methyl-L-methionine transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MMETtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MMETtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-486" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101659" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mmet_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_mmet_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_FE3tex" metaid="R_FE3tex"
-      name="Iron (III) transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FE3tex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FE3tex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99522" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34971" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34972" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34973" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34974" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fe3_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fe3_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_MG2tex" metaid="R_MG2tex"
-      name="Magnesium (Mg+2) transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MG2tex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MG2tex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-141" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101507" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29827" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29828" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29829" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29830" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mg2_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_mg2_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_Zn2tex" metaid="R_Zn2tex"
-      name="Zinc (Zn+2) transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_Zn2tex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/Zn2tex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-12" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105280" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29351" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29352" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29353" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29354" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_zn2_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_zn2_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MMETt2pp" metaid="R_MMETt2pp" name="S-methylmethionine permease (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MMETt2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MMETt2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101658" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0260" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mmet_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_mmet_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_CD2tex" metaid="R_CD2tex"
-      name="Cadmium (Cd+2) transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CD2tex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CD2tex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-10" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96499" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28707" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28708" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28709" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28710" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cd2_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cd2_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GLNabcpp" metaid="R_GLNabcpp" name="L-glutamine transport via ABC system (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLNabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLNabcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ABC-12-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.21" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100258" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29895#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29896#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29897#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29898#1" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b0809" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0811" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0810" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gln__L_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gln__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GLUabcpp" metaid="R_GLUabcpp" name="L-glutamate transport via ABC system (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLUabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLUabcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ABC-13-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.21" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100299" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29035#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29036#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29037#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29038#1" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b0654" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0653" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0655" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0652" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glu__L_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glu__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_GLUABUTt7pp" metaid="R_GLUABUTt7pp"
-      name="4-aminobutyrate/glutamate antiport (periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLUABUTt7pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLUABUTt7pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-261" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100276" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28919" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28920" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28921" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28922" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1492" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_4abut_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glu__L_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_4abut_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glu__L_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_GLUt2rpp" metaid="R_GLUt2rpp"
-      name="L-glutamate transport via proton symport, reversible (periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLUt2rpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLUt2rpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100300" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4077" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glu__L_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glu__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GLUt4pp" metaid="R_GLUt4pp" name="Na+/glutamate symport (periplasm)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLUt4pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLUt4pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100285" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29031" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29032" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29033" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29034" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3653" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glu__L_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_na1_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glu__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_na1_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_GLYALDtpp" metaid="R_GLYALDtpp" name="Glyceraldehyde facilitated diffusion (periplasm)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLYALDtpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLYALDtpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100311" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3927" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glyald_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glyald_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_etha_e" metaid="R_EX_etha_e" name="Ethanolamine exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_etha_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/etha" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_etha_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ACGK" metaid="R_ACGK" name="Acetylglutamate kinase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ACGK">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ACGK" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ACETYLGLUTKIN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.2.8" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02649" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95256" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14629" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14630" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14631" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14632" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3959" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_acglu_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_acg5p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LCTSt3ipp" metaid="R_LCTSt3ipp" name="Lactose transport via proton aniport (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LCTSt3ipp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LCTSt3ipp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101026" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28863" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28864" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28865" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28866" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2170" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1528" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0070" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_lcts_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_lcts_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ARBt3ipp" metaid="R_ARBt3ipp" name="L-arabinose transport via proton antiport (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ARBt3ipp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ARBt3ipp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-40" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95937" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1528" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_arab__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_arab__L_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_14GLUCANabcpp" metaid="R_14GLUCANabcpp"
-      name="1,4-alpha-D-glucan transport via ABC system (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_14GLUCANabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/14GLUCANabcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94693" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b4035" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4032" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4034" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4033" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_14glucan_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_14glucan_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_14GLUCANtexi" metaid="R_14GLUCANtexi"
-      name="1,4-alpha-D-glucan transport via diffusion (extracellular to periplasm) irreversible" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_14GLUCANtexi">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/14GLUCANtexi" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.4.1.161" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94694" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4036" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_14glucan_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_14glucan_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_DHPTPE" metaid="R_DHPTPE" name="Dihydroneopterin triphosphate 2'-epimerase"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DHPTPE">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DHPTPE" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:H2NTPEPIM-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/5.1.99.7" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/5.1.99.d" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R11082" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97445" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28346" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28347" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28348" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28349" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2303" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ahdt_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dhmptp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NADPHQR2" metaid="R_NADPHQR2" name="NADPH Quinone Reductase (Ubiquinone-8)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NADPHQR2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NADPHQR2" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101891" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29111" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29112" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29113" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29114" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3028" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_q8_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_q8h2_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NADPHQR3" metaid="R_NADPHQR3" name="NADPH Quinone Reductase (Menaquinone-8)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NADPHQR3">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NADPHQR3" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101892" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29115" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29116" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29117" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29118" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3028" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mqn8_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_mql8_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NADPHQR4" metaid="R_NADPHQR4" name="NADPH Quinone Reductase (2-Demethylmenaquinone-8)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NADPHQR4">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NADPHQR4" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101893" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30511" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30512" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30513" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30514" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3028" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2dmmq8_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2dmmql8_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GLBRAN2" metaid="R_GLBRAN2"
-      name="1,4-alpha-glucan branching enzyme (glycogen -&gt; bglycogen)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLBRAN2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLBRAN2" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.4.1.18" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100155" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3432" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glycogen_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_bglycogen_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ASR" metaid="R_ASR" name="Arsenate reductase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ASR">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ASR" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.20.4.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96113" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b1064" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3503" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_aso4_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gthrd_c" stoichiometry="2" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_aso3_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gthox_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ASO3tex" metaid="R_ASO3tex"
-      name="Arsenite transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ASO3tex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ASO3tex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-551" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96073" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_aso3_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_aso3_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_MANGLYCtex" metaid="R_MANGLYCtex"
-      name="2-O-alpha-mannosyl-D-glycerate transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MANGLYCtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MANGLYCtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101395" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_manglyc_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_manglyc_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_frulys_e" metaid="R_EX_frulys_e" name="Fructoselysine exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_frulys_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/frulys" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_frulys_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_METOX1s" metaid="R_METOX1s" name="Methionine oxidation (spontaneous)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_METOX1s">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/METOX1s" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-7188" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101479" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_s0001" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_met__L_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_metsox_S__L_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_METOX2s" metaid="R_METOX2s" name="Methionine oxidation 2 (spontaneous)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_METOX2s">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/METOX2s" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-7188" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101479" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_s0001" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_met__L_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_metsox_R__L_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_FRUURt2rpp" metaid="R_FRUURt2rpp"
-      name="D-fructuronate transport via proton symport, reversible (periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FRUURt2rpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FRUURt2rpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-81" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99658" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28871" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28872" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28873" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28874" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4321" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fruur_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fruur_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_FRUURtex" metaid="R_FRUURtex"
-      name="D-fructuronate transport via diffusion (extracellular)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FRUURtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FRUURtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99659" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fruur_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fruur_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ECAtpp" metaid="R_ECAtpp"
-      name="Enterobacterial common antigen transferase (flippase, cytoplasm to periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ECAtpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ECAtpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-279" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97878" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3792" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_unagamuf_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_unagamuf_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_O16AT" metaid="R_O16AT"
-      name="Rhamanosyl-N-acetylglucosamyl-undecaprenyl diphosphate O-acetyltransferase (LPS O16 antigen biosynthesis)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_O16AT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/O16AT" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102081" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2033" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_accoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ragund_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_aragund_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_coa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_O16GALFT" metaid="R_O16GALFT"
-      name="Galactofuranosyltransferase (LPS O16 antigen biosynthesis)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_O16GALFT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/O16GALFT" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102085" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2034" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_garagund_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_udpgalfur_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gfgaragund_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_udp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_O16GLCT2" metaid="R_O16GLCT2" name="Glucosyltransferase II (LPS O16 antigen biosynthesis)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_O16GLCT2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/O16GLCT2" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102087" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gfgaragund_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_udpg_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_o16aund_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_udp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_O16AUNDtpp" metaid="R_O16AUNDtpp" name="O16 antigen (flippase, cytoplasm to periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_O16AUNDtpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/O16AUNDtpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102082" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2037" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_o16aund_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_o16aund_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_O16AP1pp" metaid="R_O16AP1pp" name="O16 antigen polymerase (periplasm)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_O16AP1pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/O16AP1pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102078" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b2027" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2035" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_o16aund_p" stoichiometry="2" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_o16a2und_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_udcpdp_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_GLYCAt2rpp" metaid="R_GLYCAt2rpp"
-      name="D-glycerate transport via proton symport, reversible (periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLYCAt2rpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLYCAt2rpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100322" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b3127" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2789" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glyc__R_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glyc__R_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_GLYCAtex" metaid="R_GLYCAtex"
-      name="D-glycerate transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLYCAtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLYCAtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-523" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100323" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glyc__R_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glyc__R_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_enlipa_e" metaid="R_EX_enlipa_e" name="Phosphoethanolamine KDO(2)-lipid (A) exchange"
-      reversible="false" sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_enlipa_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/enlipa" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_enlipa_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_hacolipa_e" metaid="R_EX_hacolipa_e"
-      name="Hepta-acylated core oligosaccharide lipid A (E. coli) exchange" reversible="false" sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_hacolipa_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/hacolipa" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_hacolipa_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_AGM4PCP" metaid="R_AGM4PCP"
-      name="N-Acetyl-D-glucosamine(anhydrous)N-Acetylmuramyl-tetrapeptide L,D-carboxypeptidase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_AGM4PCP">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/AGM4PCP" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95547" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1192" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_anhgm4p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ala__D_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_anhgm3p_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_4PCP" metaid="R_4PCP" name="Tetrapeptide L,D-carboxypeptidase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_4PCP">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/4PCP" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95049" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1192" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_LalaDgluMdapDala_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_LalaDgluMdap_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ala__D_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_4PCPpp" metaid="R_4PCPpp" name="Tetrapeptide L,D-carboxypeptidase (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_4PCPpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/4PCPpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95049" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2175" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_LalaDgluMdapDala_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_LalaDgluMdap_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ala__D_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_FALDH2" metaid="R_FALDH2" name="Formaldehyde dehydrogenase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FALDH2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FALDH2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-276" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.284" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R06983" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99237" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19985" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19986" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19987" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19988" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0356" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_hmgth_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nad_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_Sfglutth_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadh_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GLYBabcpp" metaid="R_GLYBabcpp" name="Glycine betaine transport via ABC system (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLYBabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLYBabcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-283" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100314" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/32783#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/32784#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/32785#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/32786#1" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b2130" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2131" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2129" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2128" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b2679" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2677" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2678" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glyb_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glyb_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GLYC3Pt6pp" metaid="R_GLYC3Pt6pp"
-      name="Glycerol-3-phosphate : phosphate antiporter (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLYC3Pt6pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLYC3Pt6pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-22" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100321" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29015" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29016" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29017" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29018" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2240" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glyc3p_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pi_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glyc3p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GLYCLTt4pp" metaid="R_GLYCLTt4pp" name="Glycolate transport via sodium symport (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLYCLTt4pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLYCLTt4pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100335" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4067" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glyclt_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_na1_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glyclt_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_na1_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_GLYCtpp" metaid="R_GLYCtpp" name="Glycerol transport via channel (periplasm)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLYCtpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLYCtpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-131" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100343" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29675" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29676" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29677" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29678" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_s0001" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3927" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glyc_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glyc_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_H2Otpp" metaid="R_H2Otpp" name="H2O transport via diffusion (periplasm)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_H2Otpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/H2Otpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-145" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-547" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR98641" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29667" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29668" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29669" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29670" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_s0001" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0875" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_HCINNMt2rpp" metaid="R_HCINNMt2rpp"
-      name="3-hydroxycinnamic acid transport via proton symport, reversible (periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_HCINNMt2rpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/HCINNMt2rpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-457" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100570" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0353" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3hcinnm_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3hcinnm_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_HISabcpp" metaid="R_HISabcpp" name="L-histidine transport via ABC system (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_HISabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/HISabcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ABC-14-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.21" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100644" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29891#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29892#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29893#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29894#1" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b2308" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2307" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2306" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2309" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_his__L_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_his__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_HISt2rpp" metaid="R_HISt2rpp"
-      name="L-histidine reversible transport via proton symport (periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_HISt2rpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/HISt2rpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100645" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/37047" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/37048" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/37049" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/37050" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0112" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_his__L_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_his__L_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_CBIAT" metaid="R_CBIAT" name="Cobinamide adenyltransferase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CBIAT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CBIAT" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:BTUR2-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.5.1.17" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96465" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1270" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cbi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adocbi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LYSabcpp" metaid="R_LYSabcpp" name="L-lysine transport via ABC system (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LYSabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LYSabcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ABC-3-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.21" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101265" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29887#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29888#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29889#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29890#1" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b2310" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2308" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2306" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2307" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_lys__L_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_lys__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_COBALT2tex" metaid="R_COBALT2tex"
-      name="Cobalt (Co+2) transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_COBALT2tex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/COBALT2tex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-141A" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96821" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28578" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28579" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28580" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28581" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cobalt2_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cobalt2_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PPDOy" metaid="R_PPDOy" name="Propane-1,2-diol:NADP+ 1-oxidoreductase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PPDOy">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PPDOy" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-15743" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103108" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0325" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_lald__D_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_12ppd__R_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_FALGTHLs" metaid="R_FALGTHLs" name="Formaldehyde glutathione ligase (spontaneous)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FALGTHLs">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FALGTHLs" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-2961" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.4.1.22" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R06982" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99239" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22488" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22489" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22490" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22491" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_s0001" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fald_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gthrd_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_hmgth_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NTD12pp" metaid="R_NTD12pp" name="5'-nucleotidase (dIMP) (periplasm)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NTD12pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NTD12pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102031" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29383" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29384" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29385" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29386" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0480" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4055" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dimp_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_din_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PPA2" metaid="R_PPA2" name="Inorganic triphosphatase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PPA2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PPA2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRIPHOSPHATASE-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.25" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00138" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103069" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14157" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14158" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14159" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14160" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2502" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2744" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pppi_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_DIMPtex" metaid="R_DIMPtex"
-      name="DIMP transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DIMPtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DIMPtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97463" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dimp_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dimp_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_3NTD7pp" metaid="R_3NTD7pp" name="3'-nucleotidase (AMP) (periplasm)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_3NTD7pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/3NTD7pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-14126" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.6" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01562" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94935" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27898" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27899" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27900" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27901" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b4213" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0383" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3amp_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adn_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_3NTD4pp" metaid="R_3NTD4pp" name="3'-nucleotidase (CMP) (periplasm)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_3NTD4pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/3NTD4pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-14090" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.6" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02370" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94934" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27894" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27895" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27896" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27897" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0383" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4213" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0383" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3cmp_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cytd_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_3NTD2pp" metaid="R_3NTD2pp" name="3'-nucleotidase (UMP) (periplasm)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_3NTD2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/3NTD2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-14115" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.6" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01877" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94932" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27890" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27891" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27892" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27893" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b4213" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0383" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3ump_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_uri_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_3NTD9pp" metaid="R_3NTD9pp" name="3'-nucleotidase (GMP) (periplasm)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_3NTD9pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/3NTD9pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-14124" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.6" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02148" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94936" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27862" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27863" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27864" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27865" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b4213" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0383" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3gmp_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gsn_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_23PDE7pp" metaid="R_23PDE7pp"
-      name="2',3'-cyclic-nucleotide phosphodiesterase (AMP) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_23PDE7pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/23PDE7pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-14113" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.4.16" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R03537" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94722" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27886" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27887" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27888" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27889" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4213" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_23camp_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3amp_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GALTptspp" metaid="R_GALTptspp" name="Galactitol transport via PEP:Pyr PTS (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GALTptspp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GALTptspp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100018" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b2093" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2415" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2092" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2094" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2416" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_galt_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pep_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_galt1p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pyr_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_GALURt2rpp" metaid="R_GALURt2rpp"
-      name="D-galacturonate transport via proton symport, reversible (periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GALURt2rpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GALURt2rpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100020" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3093" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_galur_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_galur_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_GLCNt2rpp" metaid="R_GLCNt2rpp"
-      name="D-gluconate transport via proton symport, reversible (periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLCNt2rpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLCNt2rpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-209" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100209" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28831" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28832" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28833" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28834" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b3415" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4321" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4476" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4265" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glcn_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glcn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GLCptspp" metaid="R_GLCptspp" name="D-glucose transport via PEP:Pyr PTS (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLCptspp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLCptspp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100237" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b2415" />
-              <fbc:geneProductRef fbc:geneProduct="G_b1101" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2416" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2417" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b2417" />
-              <fbc:geneProductRef fbc:geneProduct="G_b1621" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2415" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2416" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b1817" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2415" />
-              <fbc:geneProductRef fbc:geneProduct="G_b1819" />
-              <fbc:geneProductRef fbc:geneProduct="G_b1818" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2416" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glc__D_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pep_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g6p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pyr_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_GLCRt2rpp" metaid="R_GLCRt2rpp"
-      name="D-glucarate transport via proton symport, reversible (periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLCRt2rpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLCRt2rpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100221" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b3127" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2789" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glcr_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glcr_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GLCt2pp" metaid="R_GLCt2pp" name="D-glucose transport in via proton symport (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLCt2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLCt2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-7077" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100238" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2943" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glc__D_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glc__D_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_GLCURt2rpp" metaid="R_GLCURt2rpp"
-      name="D-glucuronate transport via proton symport, reversible (periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLCURt2rpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLCURt2rpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100234" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28955" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28956" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28957" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28958" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b3909" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3093" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glcur_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glcur_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ACMUMptspp" metaid="R_ACMUMptspp"
-      name="N-acetylmuramate transport via PEP:Pyr PTS (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ACMUMptspp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ACMUMptspp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95278" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b2415" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2417" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2416" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2429" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_acmum_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pep_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_acmum6p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pyr_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_EX_h2o_e" metaid="R_EX_h2o_e" name="H2O exchange" reversible="true"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_h2o_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/h2o" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_ala__D_e" metaid="R_EX_ala__D_e" name="D-Alanine exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_ala__D_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ala__D" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ala__D_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_HSTPT" metaid="R_HSTPT" name="Histidinol-phosphate transaminase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_HSTPT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/HSTPT" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:HISTAMINOTRANS-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.6.1.9" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R03243" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95852" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23744" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23745" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23746" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23747" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2021" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glu__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_imacp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_akg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_hisp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_THDPS" metaid="R_THDPS" name="Tetrahydrodipicolinate succinylase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_THDPS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/THDPS" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TETHYDPICSUCC-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.117" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R04365" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104806" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17325" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17326" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17327" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17328" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0166" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_succoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_thdp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_coa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_sl2a6o_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ACONMT" metaid="R_ACONMT" name="Trans-aconitate methyltransferase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ACONMT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ACONMT" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-2441" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.1.1.144" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R05763" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95383" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14969" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14970" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14971" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14972" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1519" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_acon_T_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_amet_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_aconm_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ahcys_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_XTSNtex" metaid="R_XTSNtex"
-      name="Xanthosine transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_XTSNtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/XTSNtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105247" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_xtsn_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_xtsn_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_hdca_e" metaid="R_EX_hdca_e" name="Hexadecanoate (n-C16:0) exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_hdca_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/hdca" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_hdca_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_glcr_e" metaid="R_EX_glcr_e" name="D-Glucarate exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_glcr_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/glcr" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glcr_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GNK" metaid="R_GNK" name="Gluconokinase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GNK">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GNK" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLUCONOKIN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.1.12" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01737" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100390" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19433" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19434" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19435" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19436" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b3437" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4268" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glcn_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_6pgc_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_HMBS" metaid="R_HMBS" name="Hydroxymethylbilane synthase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_HMBS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/HMBS" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:OHMETHYLBILANESYN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.5.1.61" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.3.1.8" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00084" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100658" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13185" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13186" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13187" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13188" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3805" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ppbng_c" stoichiometry="4" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_hmbil_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nh4_c" stoichiometry="4" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_RMK" metaid="R_RMK" name="Rhamnulokinase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_RMK">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/RMK" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.1.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R03014" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104039" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20117" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20118" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20119" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20120" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3904" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_rml_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_rml1p_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_0_bound" id="R_FHL" metaid="R_FHL" name="Formate-hydrogen lyase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FHL">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FHL" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:FHLMULTI-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99594" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27610" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27611" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27612" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27613" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b4079" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2481" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2488" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2486" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2482" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2487" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2489" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2485" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2483" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2490" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2484" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b4079" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2719" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2720" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2723" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2722" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2724" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2721" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_for_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_HYPOE" metaid="R_HYPOE" name="Hypothetical enyme" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_HYPOE">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/HYPOE" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-14046" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.74" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02494" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100763" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25135" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25136" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25137" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25138" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pyam5p_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pydam_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MEPCT" metaid="R_MEPCT" name="2-C-methyl-D-erythritol 4-phosphate cytidylyltransferase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MEPCT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MEPCT" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:2.7.7.60-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.7.60" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R05633" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96807" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13429" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13430" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13431" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13432" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2747" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2me4p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ctp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_4c2me_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_GLUDy" metaid="R_GLUDy" name="Glutamate dehydrogenase (NADP)" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLUDy">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLUDy" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLUTDEHYD-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.4.1.13" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.4.1.3" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.4.1.4" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00248" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100086" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11612" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11613" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11614" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11615" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1761" />
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b3213" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3212" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glu__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_akg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadph_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nh4_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ZN2abcpp" metaid="R_ZN2abcpp" name="Zinc (Zn+2) ABC transporter, efflux (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ZN2abcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ZN2abcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-5205" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105277" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20621" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20622" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20623" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20624" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3469" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_zn2_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_zn2_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GLYCLTDy" metaid="R_GLYCLTDy" name="Glycolate dehydrogenase (NADP)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLYCLTDy">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLYCLTDy" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.79" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00465" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100332" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10992" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10993" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10994" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10995" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1033" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3553" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glx_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glyclt_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LYSDC" metaid="R_LYSDC" name="Lysine decarboxylase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LYSDC">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LYSDC" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:LYSDECARBOX-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.1.1.18" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00462" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101256" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22352" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22353" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22354" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22355" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0186" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4131" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_lys__L_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_15dap_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DAAD" metaid="R_DAAD" name="D-Amino acid dehydrogenase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DAAD">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DAAD" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.4.99.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97073" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1189" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ala__D_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fad_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fadh2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nh4_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pyr_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_UREAtpp" metaid="R_UREAtpp" name="Urea transport via facilitate diffusion (periplasm)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_UREAtpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/UREAtpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-460" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105156" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/32799" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/32800" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/32801" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/32802" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3927" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_urea_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_urea_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_XANt2pp" metaid="R_XANt2pp" name="Xanthine transport in via proton symport (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_XANt2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/XANt2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-5076" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-206" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105227" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29663" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29664" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29665" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29666" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b3654" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2882" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2888" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_xan_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_xan_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GLYC3Pabcpp" metaid="R_GLYC3Pabcpp"
-      name="Sn-Glycerol 3-phosphate transport via ABC system (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLYC3Pabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLYC3Pabcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:3.6.3.20-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ABC-34-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.20" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100320" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21668#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21669#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21670#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21671#1" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b3453" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3452" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3451" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3450" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glyc3p_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glyc3p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_PPPNt2rpp" metaid="R_PPPNt2rpp"
-      name="3-phenylpropionate transport via proton symport, reversible (periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PPPNt2rpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PPPNt2rpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103135" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2536" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pppn_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pppn_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_PTRCORNt7pp" metaid="R_PTRCORNt7pp" name="Putrescine/ornithine antiporter (periplasm)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PTRCORNt7pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PTRCORNt7pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-211" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103336" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28827" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28828" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28829" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28830" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0692" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_orn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ptrc_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_orn_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ptrc_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_SPMDabcpp" metaid="R_SPMDabcpp" name="Spermidine transport via ABC system (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_SPMDabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/SPMDabcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ABC-24-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.31" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104494" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29999#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30000#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30001#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30002#1" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b1124" />
-              <fbc:geneProductRef fbc:geneProduct="G_b1123" />
-              <fbc:geneProductRef fbc:geneProduct="G_b1125" />
-              <fbc:geneProductRef fbc:geneProduct="G_b1126" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b1441" />
-              <fbc:geneProductRef fbc:geneProduct="G_b1443" />
-              <fbc:geneProductRef fbc:geneProduct="G_b1442" />
-              <fbc:geneProductRef fbc:geneProduct="G_b1440" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_spmd_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_spmd_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_HG2tex" metaid="R_HG2tex"
-      name="Mercury (Hg+2) transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_HG2tex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/HG2tex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100625" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/32815" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/32816" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/32817" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/32818" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_hg2_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_hg2_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NTPP5" metaid="R_NTPP5" name="Nucleoside triphosphate pyrophosphorylase (datp)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NTPP5">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NTPP5" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-384" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.19" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.9" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97173" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28334" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28335" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28336" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28337" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1865" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2781" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_datp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_damp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="R_ATPM_lower_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ATPM" metaid="R_ATPM" name="ATP maintenance requirement" reversible="false"
-      sboTerm="SBO:0000630">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ATPM">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ATPM" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ATPASE-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.15" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.3" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.8" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.10" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.11" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.12" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.14" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.15" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.16" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.17" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.18" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.19" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.2" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.20" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.21" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.22" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.23" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.24" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.25" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.26" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.27" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.28" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.29" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.3" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.30" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.31" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.32" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.33" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.34" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.35" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.36" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.37" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.38" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.39" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.4" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.40" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.41" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.42" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.43" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.44" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.46" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.47" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.48" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.49" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.50" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.51" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.52" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.53" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.54" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.6" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.7" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.8" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.9" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.4.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.4.10" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.4.11" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.4.12" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.4.13" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.4.2" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.4.3" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.4.4" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.4.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.4.6" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.4.7" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.4.8" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.4.9" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00086" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96131" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13065" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13066" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13067" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13068" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NADPPPS" metaid="R_NADPPPS" name="NADP phosphatase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NADPPPS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NADPPPS" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-5822" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.2" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00118" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101798" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28050" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28051" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28052" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28053" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nad_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_mnl_e" metaid="R_EX_mnl_e" name="D-Mannitol exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_mnl_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/mnl" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mnl_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NTD3" metaid="R_NTD3" name="5'-nucleotidase (dCMP)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NTD3">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NTD3" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-5292" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.89" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01664" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102033" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29363" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29364" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29365" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29366" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2291" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2744" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2361" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dcmp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dcyt_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GLYOX" metaid="R_GLYOX" name="Hydroxyacylglutathione hydrolase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLYOX">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLYOX" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLYOXII-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.2.6" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01736" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100353" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25245" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25246" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25247" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25248" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0212" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_lgt__S_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gthrd_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_lac__D_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_DADNtex" metaid="R_DADNtex"
-      name="Deoxyadenosine transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DADNtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DADNtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97081" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0411" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dad_2_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dad_2_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_DHAtex" metaid="R_DHAtex"
-      name="Dihydroxyacetone transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DHAtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DHAtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-559" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97367" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dha_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dha_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ETOHtex" metaid="R_ETOHtex"
-      name="Ethanol transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ETOHtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ETOHtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-546" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97980" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35267" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35268" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35269" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35270" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_etoh_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_etoh_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MTRPOX" metaid="R_MTRPOX" name="N-methyltryptophan oxidase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MTRPOX">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MTRPOX" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-301" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.5.3.2" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101761" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28006" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28007" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28008" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28009" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1059" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_Nmtrp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_o2_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fald_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_trp__L_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_AGM4PCPpp" metaid="R_AGM4PCPpp"
-      name="N-Acetyl-D-glucosamine(anhydrous)N-Acetylmuramyl-tetrapeptide L,D-carboxypeptidase (periplasmic)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_AGM4PCPpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/AGM4PCPpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95547" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2175" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_anhgm4p_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ala__D_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_anhgm3p_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GTPDPDP" metaid="R_GTPDPDP" name="Guanosine-5'-triphosphate,3'-diphosphate diphosphatase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GTPDPDP">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GTPDPDP" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PPPGPPHYDRO-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.11" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.40" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R03409" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100099" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13073" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13074" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13075" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13076" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3779" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gdptp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppgpp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_RNDR2" metaid="R_RNDR2" name="Ribonucleoside-diphosphate reductase (GDP)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_RNDR2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/RNDR2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GDPREDUCT-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.17.4.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02019" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104062" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b3781" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2235" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2234" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b2582" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2235" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2234" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gdp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_trdrd_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dgdp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_trdox_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_asn__L_e" metaid="R_EX_asn__L_e" name="L-Asparagine exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_asn__L_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/asn__L" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_asn__L_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_mal__L_e" metaid="R_EX_mal__L_e" name="L-Malate exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_mal__L_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/mal__L" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mal__L_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NMNN" metaid="R_NMNN" name="NMN nucleosidase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NMNN">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NMNN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.2.2.14" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101971" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nmn_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ncam_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_r5p_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_XAND" metaid="R_XAND" name="Xanthine dehydrogenase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_XAND">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/XAND" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-901" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.17.1.4" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02103" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105225" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16669" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16670" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16671" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16672" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b2867" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2866" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2868" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nad_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_xan_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadh_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_urate_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_no2_e" metaid="R_EX_no2_e" name="Nitrite exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_no2_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/no2" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_no2_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_HACD3" metaid="R_HACD3" name="3-hydroxyacyl-CoA dehydrogenase (3-oxooctanoyl-CoA)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_HACD3">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/HACD3" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.211" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.35" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R04745" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100544" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/31195" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/31196" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/31197" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/31198" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b3846" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2341" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3oocoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadh_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3hocoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nad_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ACACtex" metaid="R_ACACtex"
-      name="Acetoacetate transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ACACtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ACACtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-281" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95208" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29751" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29752" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29753" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29754" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_acac_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_acac_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ACNAMtex" metaid="R_ACNAMtex"
-      name="N-acetylneuraminate transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ACNAMtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ACNAMtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-0" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95292" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28991" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28992" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28993" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28994" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4311" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_acnam_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_acnam_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ARBTNabcpp" metaid="R_ARBTNabcpp" name="Aerobactin transport via ABC system (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ARBTNabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ARBTNabcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95927" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b0153" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0151" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0152" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_arbtn_fe3_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_arbtn_fe3_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NNDMBRT" metaid="R_NNDMBRT"
-      name="Nicotinate-nucleotide dimethylbenzimidazole phosphoribosyltransferase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NNDMBRT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NNDMBRT" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DMBPPRIBOSYLTRANS-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.4.2.21" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R04148" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101979" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11196" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11197" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11198" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11199" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1991" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dmbzid_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nicrnt_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_5prdmbz_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nac_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_THRA2" metaid="R_THRA2" name="L-allo-Threonine Aldolase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_THRA2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/THRA2" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2551" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0870" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_athr__L_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_acald_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gly_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ASO3t8pp" metaid="R_ASO3t8pp" name="Arsenite efflux via ATP hydrolysis (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ASO3t8pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ASO3t8pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:3.6.3.16-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.16" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96072" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11348#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11349#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11350#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11351#1" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3502" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_aso3_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_aso3_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_H2Stex" metaid="R_H2Stex"
-      name="H2s transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_H2Stex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/H2Stex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-310" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100494" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2s_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2s_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PPK" metaid="R_PPK" name="Polyphosphate kinase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PPK">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PPK" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2501" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pi_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_OMCDC" metaid="R_OMCDC" name="2-Oxo-4-methyl-3-carboxypentanoate decarboxylation"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_OMCDC">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/OMCDC" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-7800" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.85" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01652" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102180" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25078" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25079" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25080" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25081" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_s0001" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3c4mop_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_4mop_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ABUTD" metaid="R_ABUTD" name="Aminobutyraldehyde dehydrogenase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ABUTD">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ABUTD" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:AMINOBUTDEHYDROG-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.2.1.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.2.1.19" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.2.1.3" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02549" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95191" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19105" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19106" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19107" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19108" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1444" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_4abutn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nad_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_4abut_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadh_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_E4PD" metaid="R_E4PD" name="Erythrose 4-phosphate dehydrogenase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_E4PD">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/E4PD" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ERYTH4PDEHYDROG-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.2.1.72" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01825" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97842" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12056" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12057" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12058" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12059" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2927" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1779" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_e4p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nad_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_4per_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadh_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_IG3PS" metaid="R_IG3PS" name="Imidazole-glycerol-3-phosphate synthase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_IG3PS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/IG3PS" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLUTAMIDOTRANS-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.4.2.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.1.3.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.3.2.M2" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R04558" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100811" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24793" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24794" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24795" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24796" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b2023" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2025" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gln__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_prlp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_aicar_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_eig3p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glu__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_EX_nh4_e" metaid="R_EX_nh4_e" name="Ammonia exchange" reversible="true"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_nh4_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/nh4" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nh4_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_DADK" metaid="R_DADK" name="Deoxyadenylate kinase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DADK">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DADK" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DEOXYADENYLATE-KINASE-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.4.11" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.4.13" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.4.3" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01547" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96117" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23100" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23101" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23102" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23103" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0474" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_damp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dadp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DUTPDP" metaid="R_DUTPDP" name="DUTP diphosphatase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DUTPDP">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DUTPDP" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DUTP-PYROP-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.23" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.9" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02100" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97822" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10248" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10249" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10250" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10251" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b3640" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2251" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dutp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dump_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_ddca_e" metaid="R_EX_ddca_e" name="Dodecanoate (n-C12:0) exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_ddca_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ddca" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ddca_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NTP5" metaid="R_NTP5" name="Nucleoside-triphosphatase (CTP)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NTP5">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NTP5" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-12195" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.15" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00569" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102045" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29387" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29388" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29389" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29390" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4161" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ctp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cdp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FORt2pp" metaid="R_FORt2pp"
-      name="Formate transport via proton symport (uptake only, periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FORt2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FORt2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99621" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0904" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2492" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_for_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_for_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_r5p_e" metaid="R_EX_r5p_e" name="Alpha-D-Ribose 5-phosphate exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_r5p_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/r5p" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_r5p_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_glyc2p_e" metaid="R_EX_glyc2p_e" name="Glycerol 2-phosphate exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_glyc2p_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/glyc2p" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glyc2p_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MTAN" metaid="R_MTAN" name="Methylthioadenosine nucleosidase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MTAN">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MTAN" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:METHYLTHIOADENOSINE-NUCLEOSIDASE-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.2.2.16" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.2.2.9" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01401" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101744" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13617" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13618" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13619" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13620" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0159" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_5mta_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_5mtr_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ade_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DPR" metaid="R_DPR" name="2-dehydropantoate 2-reductase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DPR">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DPR" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:2-DEHYDROPANTOATE-REDUCT-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.169" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02472" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97779" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16233" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16234" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16235" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16236" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0425" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3774" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2dhp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pant__R_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_THRD_L" metaid="R_THRD_L" name="L-threonine deaminase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_THRD_L">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/THRD_L" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:THREDEHYD-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.3.1.19" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00996" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104714" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22108" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22109" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22110" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22111" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b3772" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3117" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_thr__L_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2obut_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nh4_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_malt_e" metaid="R_EX_malt_e" name="Maltose exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_malt_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/malt" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_malt_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_4PEPTtex" metaid="R_4PEPTtex"
-      name="LalaDgluMdapDala (pentapeptide) transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_4PEPTtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/4PEPTtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95051" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_LalaDgluMdapDala_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_LalaDgluMdapDala_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NAMNPP" metaid="R_NAMNPP" name="Nicotinic acid mononucleotide pyrophosphorylase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NAMNPP">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NAMNPP" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:NICOTINATEPRIBOSYLTRANS-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/6.3.4.21" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01724" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101909" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/36163" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/36164" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/36165" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/36166" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0931" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nac_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_prpp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nicrnt_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_pnto__R_e" metaid="R_EX_pnto__R_e" name="(R)-Pantothenate exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_pnto__R_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/pnto__R" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pnto__R_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_SELNPS" metaid="R_SELNPS" name="Selenophosphate synthase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_SELNPS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/SELNPS" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:2.7.9.3-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.9.3" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R03595" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104322" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18737" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18738" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18739" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18740" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1764" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_seln_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_amp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_selnp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_CRNCAR" metaid="R_CRNCAR" name="Carnitine-CoA racemase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CRNCAR">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CRNCAR" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CARNCOARACE-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/5.1.1.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96896" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30539" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30540" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30541" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30542" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0036" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_crncoa_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_crnDcoa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GALabcpp" metaid="R_GALabcpp" name="D-galactose transport via ABC system (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GALabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GALabcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ABC-18-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.17" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100023" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b2149" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2148" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2150" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b4485" />
-              <fbc:geneProductRef fbc:geneProduct="G_b4227" />
-              <fbc:geneProductRef fbc:geneProduct="G_b4230" />
-              <fbc:geneProductRef fbc:geneProduct="G_b4231" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gal_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gal_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_GLYCLTt2rpp" metaid="R_GLYCLTt2rpp"
-      name="Glycolate transport via proton symport, reversible (periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLYCLTt2rpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLYCLTt2rpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-105" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100334" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29411" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29412" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29413" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29414" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b3603" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2975" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glyclt_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glyclt_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GUAt2pp" metaid="R_GUAt2pp" name="Guanine transport in via proton symport (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GUAt2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GUAt2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100466" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3654" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gua_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gua_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_HPPPNt2rpp" metaid="R_HPPPNt2rpp"
-      name="3-(3-hydroxyphenyl)propionate transport via proton symport, reversible (periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_HPPPNt2rpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/HPPPNt2rpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-61" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100696" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28907" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28908" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28909" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28910" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0353" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3hpppn_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3hpppn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ANHMK" metaid="R_ANHMK" name="1,6-anhydrous-N-Acetylmuramate kinase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ANHMK">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ANHMK" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95840" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1640" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_anhm_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_acmum6p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_DHFR" metaid="R_DHFR" name="Dihydrofolate reductase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DHFR">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DHFR" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.5.1.3" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00939" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97401" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15009" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15010" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15011" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15012" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1606" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0048" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dhf_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_thf_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_cit_e" metaid="R_EX_cit_e" name="Citrate exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_cit_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/cit" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cit_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PRAIi" metaid="R_PRAIi" name="Phosphoribosylanthranilate isomerase (irreversible)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PRAIi">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PRAIi" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PRAISOM-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/5.3.1.24" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R03509" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103156" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21540" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21541" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21542" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21543" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1262" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pran_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2cpr5p_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_TYRTA" metaid="R_TYRTA" name="Tyrosine transaminase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_TYRTA">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/TYRTA" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TYROSINE-AMINOTRANSFERASE-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.6.1.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.6.1.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.6.1.57" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.6.1.9" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00734" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105000" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15093" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15094" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15095" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15096" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0928" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4054" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3770" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_akg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_tyr__L_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_34hpp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glu__L_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_SHKK" metaid="R_SHKK" name="Shikimate kinase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_SHKK">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/SHKK" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:SHIKIMATE-KINASE-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.1.71" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02412" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104379" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13121" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13122" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13123" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13124" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b3390" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0388" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_skm_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_skm5p_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_gam_e" metaid="R_EX_gam_e" name="D-Glucosamine exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_gam_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/gam" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gam_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_inost_e" metaid="R_EX_inost_e" name="Myo-Inositol exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_inost_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/inost" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_inost_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_EX_mobd_e" metaid="R_EX_mobd_e" name="Molybdate exchange" reversible="true"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_mobd_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/mobd" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mobd_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_EX_so4_e" metaid="R_EX_so4_e" name="Sulfate exchange" reversible="true"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_so4_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/so4" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_so4_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_SADH" metaid="R_SADH" name="Succinylarginine dihydrolase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_SADH">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/SADH" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:SUCCARGDIHYDRO-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.5.3.23" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R04189" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104239" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19533" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19534" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19535" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19536" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1745" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_sucarg_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nh4_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_sucorn_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GLUSy" metaid="R_GLUSy" name="Glutamate synthase (NADPH)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLUSy">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLUSy" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLUTAMATESYN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.4.1.13" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00114" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100291" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15501" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15502" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15503" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15504" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b3213" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3212" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_akg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gln__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glu__L_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GUAPRT" metaid="R_GUAPRT" name="Guanine phosphoribosyltransferase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GUAPRT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GUAPRT" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GUANPRIBOSYLTRAN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.4.2.22" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.4.2.7" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.4.2.8" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01229" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100409" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25424" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25425" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25426" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25427" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0125" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0238" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gua_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_prpp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gmp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_phe__L_e" metaid="R_EX_phe__L_e" name="L-Phenylalanine exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_phe__L_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/phe__L" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_phe__L_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_thr__L_e" metaid="R_EX_thr__L_e" name="L-Threonine exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_thr__L_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/thr__L" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_thr__L_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_uri_e" metaid="R_EX_uri_e" name="Uridine exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_uri_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/uri" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_uri_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PDH" metaid="R_PDH" name="Pyruvate dehydrogenase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PDH">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PDH" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PYRUVDEH-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.2.1.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.2.1.51" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.2.4.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.8.1.4" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.12" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00209" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102425" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28042" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28043" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28044" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28045" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b0116" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0115" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0114" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_coa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nad_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pyr_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_accoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadh_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DMSOR2pp" metaid="R_DMSOR2pp"
-      name="Dimethyl sulfoxide reductase (Demethylmenaquinol 8) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DMSOR2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DMSOR2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97532" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b1872" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1873" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2dmmql8_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dmso_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2dmmq8_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dms_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_H2St1pp" metaid="R_H2St1pp" name="H2s transport (periplasm)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_H2St1pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/H2St1pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-310" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100494" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_s0001" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2s_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2s_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_HYD3pp" metaid="R_HYD3pp" name="Hydrogenase (Demethylmenaquinone-8: 2 protons) (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_HYD3pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/HYD3pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.18.99.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100755" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b0974" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0973" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0972" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b2996" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2994" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2997" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2995" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2dmmq8_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="2" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2dmmql8_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="2" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NO3R1pp" metaid="R_NO3R1pp" name="Nitrate reductase (Ubiquinol-8) (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NO3R1pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NO3R1pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101986" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29147#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29148#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29149#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29150#1" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b1466" />
-              <fbc:geneProductRef fbc:geneProduct="G_b1467" />
-              <fbc:geneProductRef fbc:geneProduct="G_b1468" />
-              <fbc:geneProductRef fbc:geneProduct="G_b1465" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b1226" />
-              <fbc:geneProductRef fbc:geneProduct="G_b1224" />
-              <fbc:geneProductRef fbc:geneProduct="G_b1227" />
-              <fbc:geneProductRef fbc:geneProduct="G_b1225" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_no3_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_q8h2_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_no2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_q8_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_halipa_e" metaid="R_EX_halipa_e" name="Hepta-acylated KDO(2)-lipid (A) exchange"
-      reversible="false" sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_halipa_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/halipa" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_halipa_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_AACPS5" metaid="R_AACPS5" name="Acyl-[acyl-carrier-protein] synthetase  (n-C18:1)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_AACPS5">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/AACPS5" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95144" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b1094" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2836" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ocdcea_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_amp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_octeACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MANptspp" metaid="R_MANptspp" name="D-mannose transport via PEP:Pyr PTS (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MANptspp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MANptspp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101401" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b2416" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1818" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1819" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1817" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2415" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_man_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pep_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_man6p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pyr_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_cmp_e" metaid="R_EX_cmp_e" name="CMP exchange" reversible="false" sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_cmp_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/cmp" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cmp_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NTD8" metaid="R_NTD8" name="5'-nucleotidase (dGMP)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NTD8">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NTD8" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-14142" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.89" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01968" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102038" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29379" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29380" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29381" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29382" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b3399" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2744" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2291" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2361" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dgmp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dgsn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GALCTD" metaid="R_GALCTD" name="Galactarate dehydratase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GALCTD">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GALCTD" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GALACTARDEHYDRA-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.42" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R05608" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99955" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16005" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16006" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16007" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16008" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3128" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_galct__D_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_5dh4dglc_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_malthx_e" metaid="R_EX_malthx_e" name="Maltohexaose exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_malthx_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/malthx" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_malthx_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MLTG4" metaid="R_MLTG4" name="Maltodextrin glucosidase (maltohexaose)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MLTG4">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MLTG4" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-14282" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.2.1.20" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101622" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0403" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_malthx_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glc__D_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_maltpt_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_UDPGDC" metaid="R_UDPGDC" name="UDP-glucuronate C-4'' decarboxylase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_UDPGDC">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/UDPGDC" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-1861" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.305" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R07658" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105064" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24702" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24703" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24704" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24705" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2255" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nad_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_udpglcur_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadh_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_udpLa4o_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_PUNP4" metaid="R_PUNP4" name="Purine-nucleoside phosphorylase (Deoxyguanosine)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PUNP4">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PUNP4" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DEOXYGUANPHOSPHOR-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.4.2.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.4.2.4" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01969" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103346" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27738" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27739" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27740" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27741" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2407" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4384" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dgsn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pi_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2dr1p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gua_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_AMAOTr" metaid="R_AMAOTr" name="Adenosylmethionine-8-amino-7-oxononanoate transaminase"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_AMAOTr">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/AMAOTr" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DAPASYN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.6.1.62" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R03231" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95806" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16861" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16862" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16863" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16864" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0774" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_8aonn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_amet_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_amob_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dann_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_csn_e" metaid="R_EX_csn_e" name="Cytosine exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_csn_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/csn" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_csn_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_etoh_e" metaid="R_EX_etoh_e" name="Ethanol exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_etoh_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/etoh" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_etoh_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_his__L_e" metaid="R_EX_his__L_e" name="L-Histidine exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_his__L_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/his__L" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_his__L_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_EX_k_e" metaid="R_EX_k_e" name="K+ exchange" reversible="true" sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_k_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/k" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_k_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_EX_na1_e" metaid="R_EX_na1_e" name="Sodium exchange" reversible="true"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_na1_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/na1" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_na1_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ARGORNt7pp" metaid="R_ARGORNt7pp" name="Arginine/ornithine antiporter (periplasm)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ARGORNt7pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ARGORNt7pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95946" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34991" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34992" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34993" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34994" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1605" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_arg__L_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_orn_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_arg__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_orn_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_dmso_e" metaid="R_EX_dmso_e" name="Dimethyl sulfoxide exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_dmso_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/dmso" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dmso_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_12ppd__S_e" metaid="R_EX_12ppd__S_e" name="(S)-Propane-1,2-diol exchange"
-      reversible="false" sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_12ppd__S_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/12ppd__S" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_12ppd__S_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_pppn_e" metaid="R_EX_pppn_e" name="Phenylpropanoate exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_pppn_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/pppn" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pppn_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_acgam1p_e" metaid="R_EX_acgam1p_e" name="N-Acetyl-D-glucosamine 1-phosphate exchange"
-      reversible="false" sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_acgam1p_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/acgam1p" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_acgam1p_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NTD11pp" metaid="R_NTD11pp" name="5'-nucleotidase (IMP)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NTD11pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NTD11pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-7607" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.99" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01126" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102030" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27718" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27719" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27720" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27721" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0480" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4055" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_imp_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ins_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_galt_e" metaid="R_EX_galt_e" name="Galactitol exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_galt_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/galt" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_galt_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DKGLCNR2x" metaid="R_DKGLCNR2x" name="2,5-diketo-D-gluconate reductase (NADH)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DKGLCNR2x">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DKGLCNR2x" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97490" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30103" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30104" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30105" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30106" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3553" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_25dkglcn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadh_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_5dglcn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nad_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ACGS" metaid="R_ACGS" name="N-acetylglutamate synthase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ACGS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ACGS" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:N-ACETYLTRANSFER-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00259" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95259" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24292" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24293" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24294" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24295" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2818" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_accoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glu__L_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_acglu_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_coa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PDE1" metaid="R_PDE1" name="3',5'-cyclic-nucleotide phosphodiesterase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PDE1">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PDE1" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-5038" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.4.17" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.4.53" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00191" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95886" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25277" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25278" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25279" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25280" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1489" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3032" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_camp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_amp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MCITD" metaid="R_MCITD" name="2-methylcitrate dehydratase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MCITD">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MCITD" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:2-METHYLCITRATE-DEHYDRATASE-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.79" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R04424" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101413" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17725" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17726" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17727" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17728" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0334" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2mcit_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2mcacn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_CU2tex" metaid="R_CU2tex"
-      name="Copper (Cu+2) transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CU2tex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CU2tex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-14" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96951" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28703" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28704" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28705" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28706" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cu2_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cu2_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_GLCATr" metaid="R_GLCATr" name="D-glucose O-acetyltransferase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLCATr">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLCATr" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.79" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100176" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0459" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_accoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glc__D_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_acglc__D_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_coa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FECRMUtex" metaid="R_FECRMUtex" name="Ferrichrome (minus Fe) secretion (to extracellular)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FECRMUtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FECRMUtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99533" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fecrm_un_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fecrm_un_e" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ALAALAr" metaid="R_ALAALAr" name="D-alanine-D-alanine ligase (reversible)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ALAALAr">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ALAALAr" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DALADALALIG-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/6.3.2.4" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01150" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95678" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11224" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11225" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11226" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11227" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0381" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0092" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ala__D_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_alaala_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_CLtex" metaid="R_CLtex"
-      name="Chloride (Cl-1) transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CLtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CLtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-139" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96797" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29823" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29824" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29825" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29826" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cl_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cl_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CELBpts" metaid="R_CELBpts" name="Cellobiose transport via PEPPyr PTS" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CELBpts">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CELBpts" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96586" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b2416" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2715" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2415" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b1737" />
-              <fbc:geneProductRef fbc:geneProduct="G_b1738" />
-              <fbc:geneProductRef fbc:geneProduct="G_b1736" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2416" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2415" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cellb_e" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pep_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_6pgg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pyr_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ACACT1r" metaid="R_ACACT1r" name="Acetyl-CoA C-acetyltransferase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ACACT1r">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ACACT1r" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ACETYL-COA-ACETYLTRANSFER-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.9" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00238" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95194" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21036" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21037" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21038" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21039" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2342" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2224" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3845" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_accoa_c" stoichiometry="2" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_aacoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_coa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MALTptspp" metaid="R_MALTptspp" name="Maltose transport via PEP:Pyr PTS (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MALTptspp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MALTptspp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101363" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b2415" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1621" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2417" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2416" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_malt_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pep_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_malt6p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pyr_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_glcur1p_e" metaid="R_EX_glcur1p_e" name="D-Glucuronate 1-phosphate exchange"
-      reversible="false" sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_glcur1p_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/glcur1p" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glcur1p_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_thrp_e" metaid="R_EX_thrp_e" name="L-Threonine O-3-phosphate exchange"
-      reversible="false" sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_thrp_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/thrp" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_thrp_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_pydxn_e" metaid="R_EX_pydxn_e" name="Pyridoxine exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_pydxn_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/pydxn" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pydxn_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CD2abcpp" metaid="R_CD2abcpp" name="Cadmium (Cd+2) ABC transporter (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CD2abcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CD2abcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:3.6.3.3-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:3.6.3.46-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.3" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.46" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96495" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12132#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12133#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12134#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12135#1" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3469" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cd2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cd2_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_G2PPpp" metaid="R_G2PPpp" name="Glycerol 2-phosphate phosphatase (periplasmic)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_G2PPpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/G2PPpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLYCEROL-2-PHOSPHATASE-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.19" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01043" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99852" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13105" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13106" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13107" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13108" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b4055" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0383" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glyc2p_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glyc_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_Kt3pp" metaid="R_Kt3pp" name="Potassium transport out via proton antiport (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_Kt3pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/Kt3pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-42" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100939" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29467" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29468" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29469" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29470" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1216" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3350" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0047" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0842" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_k_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_k_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_AGM3PApp" metaid="R_AGM3PApp"
-      name="N-Acetyl-D-glucosamine(anhydrous)N-Acetylmuramyl-tripeptide amidase (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_AGM3PApp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/AGM3PApp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95543" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2817" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4169" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2435" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0867" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_anhgm3p_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_LalaDgluMdap_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_anhgm_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_SUCOAS" metaid="R_SUCOAS" name="Succinyl-CoA synthetase (ADP-forming)" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_SUCOAS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/SUCOAS" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:SUCCCOASYN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/6.2.1.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00405" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104635" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17661" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17662" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17663" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17664" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b0729" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0728" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_coa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_succ_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_succoa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NTP1" metaid="R_NTP1" name="Nucleoside-triphosphatase (ATP)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NTP1">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NTP1" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ATPASE-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.15" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.3" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.8" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.10" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.11" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.12" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.14" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.15" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.16" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.17" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.18" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.19" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.2" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.20" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.21" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.22" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.23" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.24" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.25" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.26" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.27" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.28" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.29" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.3" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.30" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.31" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.32" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.33" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.34" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.35" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.36" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.37" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.38" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.39" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.4" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.40" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.41" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.42" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.43" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.44" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.46" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.47" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.48" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.49" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.50" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.51" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.52" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.53" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.54" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.6" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.7" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.8" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.9" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.4.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.4.10" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.4.11" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.4.12" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.4.13" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.4.2" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.4.3" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.4.4" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.4.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.4.6" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.4.7" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.4.8" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.4.9" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00086" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96131" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13065" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13066" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13067" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13068" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0650" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4161" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_GALKr" metaid="R_GALKr" name="Galactokinase" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GALKr">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GALKr" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GALACTOKIN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.1.6" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01092" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99985" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13553" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13554" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13555" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13556" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0757" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gal_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gal1p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PANTS" metaid="R_PANTS" name="Pantothenate synthase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PANTS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PANTS" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PANTOATE-BETA-ALANINE-LIG-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/6.3.2.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02473" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102345" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10912" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10913" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10914" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10915" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0133" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ala_B_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pant__R_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_amp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pnto__R_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_YUMPS" metaid="R_YUMPS" name="YUMP synthetase" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_YUMPS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/YUMPS" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103310" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2165" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_r5p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ura_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_psd5p_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DHQS" metaid="R_DHQS" name="3-dehydroquinate synthase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DHQS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DHQS" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:3-DEHYDROQUINATE-SYNTHASE-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.3.4" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R03083" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97447" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21968" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21969" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21970" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21971" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3389" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2dda7p_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3dhq_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PGCD" metaid="R_PGCD" name="Phosphoglycerate dehydrogenase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PGCD">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PGCD" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PGLYCDEHYDROG-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.95" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01513" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102527" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12641" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12642" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12643" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12644" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2913" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3pg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nad_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3php_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadh_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_cys__L_e" metaid="R_EX_cys__L_e" name="L-Cysteine exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_cys__L_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/cys__L" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cys__L_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_gsn_e" metaid="R_EX_gsn_e" name="Guanosine exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_gsn_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/gsn" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gsn_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_orot_e" metaid="R_EX_orot_e" name="Orotate exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_orot_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/orot" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_orot_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ADSL1r" metaid="R_ADSL1r" name="Adenylsuccinate lyase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ADSL1r">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ADSL1r" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:AMPSYN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.3.2.2" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01083" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95493" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16853" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16854" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16855" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16856" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1131" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dcamp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_amp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fum_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_SERD_D" metaid="R_SERD_D" name="D-serine deaminase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_SERD_D">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/SERD_D" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DSERDEAM-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.3.1.18" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00221" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104338" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13977" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13978" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13979" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13980" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2366" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ser__D_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nh4_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pyr_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_AICART" metaid="R_AICART"
-      name="Phosphoribosylaminoimidazolecarboxamide formyltransferase" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_AICART">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/AICART" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.1.2.3" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R04560" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95639" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22192" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22193" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22194" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22195" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4006" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_10fthf_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_aicar_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fprica_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_thf_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FRUpts2pp" metaid="R_FRUpts2pp"
-      name="Fructose transport via PEP:Pyr PTS (f6p generating) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FRUpts2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FRUpts2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99662" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b1819" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1817" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1818" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2416" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2415" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fru_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pep_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_f6p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pyr_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_G6Pt6_2pp" metaid="R_G6Pt6_2pp"
-      name="Glucose-6-phosphate transport via phosphate antiport (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_G6Pt6_2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/G6Pt6_2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99913" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3666" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_g6p_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pi_c" stoichiometry="2" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g6p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_p" stoichiometry="2" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_PROtex" metaid="R_PROtex"
-      name="L-proline transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PROtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PROtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103213" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pro__L_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pro__L_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_SBTtex" metaid="R_SBTtex"
-      name="D-sorbitol transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_SBTtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/SBTtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104288" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_sbt__D_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_sbt__D_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PFK" metaid="R_PFK" name="Phosphofructokinase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PFK">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PFK" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.1.11" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102507" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16109" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16110" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16111" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16112" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b3916" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1723" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_f6p_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fdp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_PGM" metaid="R_PGM" name="Phosphoglycerate mutase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PGM">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PGM" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:3PGAREARR-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-15513" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/5.4.2.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/5.4.2.11" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/5.4.2.12" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01518" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102547" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15901" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15902" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15903" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15904" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0755" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3612" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2pg_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3pg_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_TPI" metaid="R_TPI" name="Triose-phosphate isomerase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_TPI">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/TPI" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRIOSEPISOMERIZATION-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/5.3.1.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01015" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104918" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18585" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18586" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18587" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18588" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3919" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dhap_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g3p_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_RPI" metaid="R_RPI" name="Ribose-5-phosphate isomerase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_RPI">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/RPI" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/5.3.1.6" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104084" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2914" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4090" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_r5p_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ru5p__D_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_PERD" metaid="R_PERD" name="Erythronate 4-phosphate (4per) dehydrogenase"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PERD">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PERD" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ERYTHRON4PDEHYDROG-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.290" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R04210" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102495" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18829" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18830" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18831" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18832" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2320" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_4per_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nad_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadh_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ohpb_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PYDAMK" metaid="R_PYDAMK" name="Pyridoxamine kinase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PYDAMK">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PYDAMK" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PYRAMKIN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.1.35" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02493" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103357" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25104" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25105" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25106" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25107" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2418" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pydam_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pyam5p_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_AKGtex" metaid="R_AKGtex"
-      name="Alpha-ketoglutarate transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_AKGtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/AKGtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95663" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_akg_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_akg_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ALLTNtex" metaid="R_ALLTNtex"
-      name="Allantoin transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ALLTNtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ALLTNtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-557" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95771" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_alltn_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_alltn_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ASNtex" metaid="R_ASNtex"
-      name="L-asparagine transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ASNtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ASNtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96069" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_asn__L_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_asn__L_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FE3HOXabcpp" metaid="R_FE3HOXabcpp"
-      name="Ferric-dicitrate transport via ABC system (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FE3HOXabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FE3HOXabcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99519" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b0152" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0151" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0153" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fe3hox_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fe3hox_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FADRx2" metaid="R_FADRx2" name="FAD reductase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FADRx2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FADRx2" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.5.1.30" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.5.1.45" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R09520" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99216" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30151" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30152" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30153" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30154" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b2764" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2763" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fad_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fadh2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_EX_o2_e" metaid="R_EX_o2_e" name="O2 exchange" reversible="true" sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_o2_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/o2" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_o2_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_gal_bD_e" metaid="R_EX_gal_bD_e" name="Beta D-Galactose exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_gal_bD_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/gal_bD" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gal_bD_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PDE4" metaid="R_PDE4" name="3',5'-cyclic-nucleotide phosphodiesterase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PDE4">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PDE4" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:35-CYCLIC-GMP-PHOSPHODIESTERASE-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.4.17" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.4.35" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01234" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100078" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16957" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16958" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16959" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16960" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1489" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_35cgmp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gmp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_AGM4PH" metaid="R_AGM4PH"
-      name="N-Acetyl-D-glucosamine(anhydrous)N-Acetylmuramyl-tetrapeptide beta -1,4-N-acetylglucosaminidase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_AGM4PH">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/AGM4PH" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95548" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1107" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_anhgm4p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_acgam_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_anhm4p_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_AM4PA" metaid="R_AM4PA" name="Anhydrous-N-Acetylmuramyl-tetrapeptide amidase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_AM4PA">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/AM4PA" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95793" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0110" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_anhm4p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_LalaDgluMdapDala_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_anhm_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_dump_e" metaid="R_EX_dump_e" name="DUMP exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_dump_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/dump" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dump_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_o2s_e" metaid="R_EX_o2s_e" name="Superoxide anion exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_o2s_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/o2s" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_o2s_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_gal1p_e" metaid="R_EX_gal1p_e" name="Alpha-D-Galactose 1-phosphate exchange"
-      reversible="false" sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_gal1p_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/gal1p" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gal1p_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_dcmp_e" metaid="R_EX_dcmp_e" name="DCMP exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_dcmp_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/dcmp" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dcmp_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_23ccmp_e" metaid="R_EX_23ccmp_e" name="2',3'-Cyclic CMP exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_23ccmp_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/23ccmp" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_23ccmp_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_3cmp_e" metaid="R_EX_3cmp_e" name="3'-cmp exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_3cmp_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/3cmp" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3cmp_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ATHRDHr" metaid="R_ATHRDHr" name="L-allo-threonine dehydrogenase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ATHRDHr">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ATHRDHr" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-16000" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.381" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R10851" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96121" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30055" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30056" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30057" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30058" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1539" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_athr__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2aobut_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadph_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_LSERDHr" metaid="R_LSERDHr" name="L-serine dehydrogenase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LSERDHr">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LSERDHr" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-2201" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.276" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R06126" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101242" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21596" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21597" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21598" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21599" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1539" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ser__L_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2amsa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadph_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_DSERDHr" metaid="R_DSERDHr" name="D-serine dehydrogenase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DSERDHr">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DSERDHr" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97797" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30107" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30108" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30109" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30110" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1539" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ser__D_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2amsa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadph_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_skm_e" metaid="R_EX_skm_e" name="Shikimate exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_skm_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/skm" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_skm_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_ag_e" metaid="R_EX_ag_e" name="Silver exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_ag_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ag" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ag_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_cys__D_e" metaid="R_EX_cys__D_e" name="D-Cysteine exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_cys__D_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/cys__D" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cys__D_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_acser_e" metaid="R_EX_acser_e" name="O-Acetyl-L-serine exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_acser_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/acser" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_acser_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_cu_e" metaid="R_EX_cu_e" name="Cu+ exchange" reversible="false" sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_cu_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/cu" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cu_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_arbtn_e" metaid="R_EX_arbtn_e" name="Aerobactin minus Fe3 exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_arbtn_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/arbtn" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_arbtn_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_dopa_e" metaid="R_EX_dopa_e" name="Dopamine exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_dopa_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/dopa" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dopa_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_hom__L_e" metaid="R_EX_hom__L_e" name="L-Homoserine exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_hom__L_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/hom__L" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_hom__L_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_OBTFL" metaid="R_OBTFL" name="2-Oxobutanoate formate lyase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_OBTFL">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/OBTFL" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:KETOBUTFORMLY-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.54" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R06987" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102135" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28054" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28055" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28056" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28057" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b0902" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0903" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b0903" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0902" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2579" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b0902" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3114" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2obut_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_coa_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_for_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppcoa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_THRt2pp" metaid="R_THRt2pp"
-      name="L-threonine efflux transport via proton antiport (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_THRt2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/THRt2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-0244" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104851" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28995" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28996" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28997" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28998" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0813" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3823" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_thr__L_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_thr__L_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_LalaDgluMdapDala_e" metaid="R_EX_LalaDgluMdapDala_e"
-      name="L-alanine-D-glutamate-meso-2,6-diaminoheptanedioate-D-alanine exchange" reversible="false" sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_LalaDgluMdapDala_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LalaDgluMdapDala" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_LalaDgluMdapDala_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_LalaDgluMdap_e" metaid="R_EX_LalaDgluMdap_e"
-      name="L-alanine-D-glutamate-meso-2,6-diaminoheptanedioate exchange" reversible="false" sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_LalaDgluMdap_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LalaDgluMdap" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_LalaDgluMdap_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_anhgm_e" metaid="R_EX_anhgm_e"
-      name="N-Acetyl-D-glucosamine(anhydrous)N-Acetylmuramic acid exchange" reversible="false" sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_anhgm_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/anhgm" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_anhgm_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_fald_e" metaid="R_EX_fald_e" name="Formaldehyde exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_fald_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/fald" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fald_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_G6PP" metaid="R_G6PP" name="Glucose-6-phosphate phosphatase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_G6PP">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/G6PP" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN66-526" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.58" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.9" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00303" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99912" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16689" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16690" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16691" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16692" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b3826" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0822" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2293" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_g6p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glc__D_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MMCD" metaid="R_MMCD" name="Methylmalonyl-CoA decarboxylase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MMCD">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MMCD" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:METHYLMALONYL-COA-DECARBOXYLASE-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.1.1.41" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.1.1.9" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00923" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101656" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21396" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21397" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21398" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21399" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2919" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mmcoa__S_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppcoa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GLNS" metaid="R_GLNS" name="Glutamine synthetase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLNS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLNS" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLUTAMINESYN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/6.3.1.2" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00253" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100024" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16169" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16170" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16171" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16172" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3870" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glu__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nh4_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gln__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_TYMtex" metaid="R_TYMtex"
-      name="Tyramine transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_TYMtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/TYMtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104985" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_tym_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_tym_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GTHS" metaid="R_GTHS" name="Glutathione synthetase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GTHS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GTHS" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLUTATHIONE-SYN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/6.3.2.3" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00497" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100450" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13557" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13558" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13559" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13560" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2947" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glucys_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gly_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gthrd_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_g3pe_e" metaid="R_EX_g3pe_e" name="Sn-Glycero-3-phosphoethanolamine exchange"
-      reversible="false" sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_g3pe_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/g3pe" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_g3pe_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_pacald_e" metaid="R_EX_pacald_e" name="Phenylacetaldehyde exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_pacald_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/pacald" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pacald_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_CMPtex" metaid="R_CMPtex"
-      name="CMP transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CMPtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CMPtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96806" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cmp_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cmp_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_DUMPtex" metaid="R_DUMPtex"
-      name="DUMP transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DUMPtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DUMPtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97813" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dump_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dump_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_XMPtex" metaid="R_XMPtex"
-      name="XMP transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_XMPtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/XMPtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105231" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_xmp_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_xmp_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_3PEPTtex" metaid="R_3PEPTtex"
-      name="LalaDgluMdap (tripeptide) transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_3PEPTtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/3PEPTtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94971" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_LalaDgluMdap_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_LalaDgluMdap_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ANHGMtex" metaid="R_ANHGMtex"
-      name="GlcNAc-anhMurNAc transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ANHGMtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ANHGMtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95839" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_anhgm_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_anhgm_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_UDPKAAT" metaid="R_UDPKAAT"
-      name="UDP-4''-ketopentose:UDP-4-amino-4-deoxy-L-arabinose aminotransferase" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_UDPKAAT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/UDPKAAT" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-1863" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.6.1.87" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R07659" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105074" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24710" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24711" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24712" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24713" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2253" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glu__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_udpLa4o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_akg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_udpLa4n_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ULA4NFT" metaid="R_ULA4NFT" name="UDP-L-Ara4N formyltransferase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ULA4NFT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ULA4NFT" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.1.2.13" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R07660" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105113" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24706" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24707" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24708" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24709" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2255" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_10fthf_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_udpLa4n_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_thf_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_udpLa4fn_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_UPLA4FNT" metaid="R_UPLA4FNT" name="Undecaprenyl phosphate-L-Ara4FN transferase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_UPLA4FNT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/UPLA4FNT" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105133" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2254" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_udcpp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_udpLa4fn_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_uLa4fn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_udp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_UPLA4FNF" metaid="R_UPLA4FNF" name="Undecaprenyl phosphate-L-Ara4FN formylase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_UPLA4FNF">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/UPLA4FNF" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105132" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2256" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_uLa4fn_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_for_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_uLa4n_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ULA4Ntppi" metaid="R_ULA4Ntppi" name="Transport (cytoplasm to periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ULA4Ntppi">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ULA4Ntppi" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105114" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b2258" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4544" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_uLa4n_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_uLa4n_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_HEPT1" metaid="R_HEPT1" name="Heptosyltransferase I (LPS core synthesis)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_HEPT1">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/HEPT1" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.4.-.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100602" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28402" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28403" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28404" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28405" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3621" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_adphep_LD_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_lipa_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_hlipa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_FALDtex" metaid="R_FALDtex"
-      name="Formaldehyde transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FALDtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FALDtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99238" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fald_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fald_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ALR2" metaid="R_ALR2" name="Aldose reductase (methylglyoxal)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ALR2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ALR2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-4281" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02528" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95788" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27986" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27987" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27988" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27989" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1781" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3012" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0207" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3001" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mthgxl_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_acetol_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_AMALT2" metaid="R_AMALT2" name="Amylomaltase (maltotetraose)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_AMALT2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/AMALT2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-14260" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.4.1.25" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95801" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3416" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_malt_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_maltttr_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glc__D_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_maltpt_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_MLTP1" metaid="R_MLTP1" name="Maltodextrin phosphorylase (maltopentaose)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MLTP1">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MLTP1" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-14284" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.4.1.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101632" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29647" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29648" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29649" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29650" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3417" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_maltpt_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pi_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g1p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_maltttr_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_HEPT2" metaid="R_HEPT2" name="Heptosyltransferase II (LPS core synthesis)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_HEPT2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/HEPT2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-5061" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100604" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28538" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28539" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28540" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28541" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3620" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_adphep_LD_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_hlipa_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_hhlipa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_CYSDtex" metaid="R_CYSDtex"
-      name="D-cysteine transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CYSDtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CYSDtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96997" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cys__D_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cys__D_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CYSDabcpp" metaid="R_CYSDabcpp" name="D-cysteine uptake via ABC system (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CYSDabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CYSDabcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-289" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96996" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cys__D_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cys__D_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_HXAND" metaid="R_HXAND" name="Hypoxanthine dehydrogenase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_HXAND">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/HXAND" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-7682" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.17.1.4" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01768" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100747" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24670" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24671" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24672" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24673" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b2867" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2866" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2868" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_hxan_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nad_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadh_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_xan_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_acgal_e" metaid="R_EX_acgal_e" name="N-Acetyl-D-galactosamine exchange"
-      reversible="false" sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_acgal_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/acgal" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_acgal_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_so2_e" metaid="R_EX_so2_e" name="Sulfur dioxide exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_so2_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/so2" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_so2_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_dms_e" metaid="R_EX_dms_e" name="Dimethyl sulfide exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_dms_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/dms" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dms_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_G3PItex" metaid="R_G3PItex"
-      name="Glycero-3-phospho-1-inositol transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_G3PItex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/G3PItex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99888" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/32915" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/32916" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/32917" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/32918" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_g3pi_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g3pi_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_G3PGtex" metaid="R_G3PGtex"
-      name="Glycerophoglycerol transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_G3PGtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/G3PGtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99886" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_g3pg_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g3pg_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_G3PEtex" metaid="R_G3PEtex"
-      name="Glycero-3-phosphoethanolamine transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_G3PEtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/G3PEtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99884" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_g3pe_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g3pe_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_G3PCtex" metaid="R_G3PCtex"
-      name="Glycero-3-phosphocholine transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_G3PCtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/G3PCtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99874" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/32911" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/32912" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/32913" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/32914" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_g3pc_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g3pc_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MOAT3C" metaid="R_MOAT3C"
-      name="3-deoxy-D-manno-octulosonic acid transferase III (LPS core biosynthesis)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MOAT3C">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MOAT3C" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101686" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3624" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ckdo_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_phphhlipa_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cmp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_kphphhlipa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_RHAT1" metaid="R_RHAT1" name="Rhamnosyltransferase I (LPS core biosynthesis)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_RHAT1">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/RHAT1" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104025" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3629" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dtdprmn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_kphphhlipa_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dtdp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_icolipa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GLCabcpp" metaid="R_GLCabcpp" name="D-glucose transport via ABC system (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLCabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLCabcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-320" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.17" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100236" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b2148" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2149" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2150" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glc__D_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glc__D_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GALT1" metaid="R_GALT1" name="Galactosyltransferase I (LPS core synthesis)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GALT1">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GALT1" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100015" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3628" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gicolipa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_udpg_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gagicolipa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_udp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GLCTR2" metaid="R_GLCTR2" name="Glucosyltransferase II (LPS core synthesis)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLCTR2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLCTR2" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100227" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3627" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gagicolipa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_udpg_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ggagicolipa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_udp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_UDPGPpp" metaid="R_UDPGPpp" name="UDPglucose pyrophosphohydrolase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_UDPGPpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/UDPGPpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.45" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.8" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.9" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00287" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105070" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29555" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29556" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29557" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29558" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0480" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_udpg_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g1p_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ump_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_acgal1p_e" metaid="R_EX_acgal1p_e" name="N-Acetyl-D-galactosamine 1-phosphate exchange"
-      reversible="false" sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_acgal1p_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/acgal1p" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_acgal1p_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_cyan_e" metaid="R_EX_cyan_e" name="Hydrogen cyanide exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_cyan_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/cyan" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cyan_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_tyrp_e" metaid="R_EX_tyrp_e" name="Phosphotyrosine exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_tyrp_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/tyrp" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_tyrp_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_uacgam_e" metaid="R_EX_uacgam_e" name="UDP-N-acetyl-D-glucosamine exchange"
-      reversible="false" sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_uacgam_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/uacgam" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_uacgam_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_udpacgal_e" metaid="R_EX_udpacgal_e" name="UDP-N-acetyl-D-galactosamine exchange"
-      reversible="false" sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_udpacgal_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/udpacgal" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_udpacgal_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_udpg_e" metaid="R_EX_udpg_e" name="UDPglucose exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_udpg_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/udpg" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_udpg_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_udpgal_e" metaid="R_EX_udpgal_e" name="UDPgalactose exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_udpgal_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/udpgal" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_udpgal_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_udpglcur_e" metaid="R_EX_udpglcur_e" name="UDP-D-glucuronate exchange"
-      reversible="false" sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_udpglcur_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/udpglcur" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_udpglcur_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_14glucan_e" metaid="R_EX_14glucan_e" name="1,4-alpha-D-glucan exchange"
-      reversible="false" sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_14glucan_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/14glucan" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_14glucan_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_pser__L_e" metaid="R_EX_pser__L_e" name="O-Phospho-L-serine exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_pser__L_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/pser__L" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pser__L_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_aso3_e" metaid="R_EX_aso3_e" name="Arsenite exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_aso3_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/aso3" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_aso3_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_tcynt_e" metaid="R_EX_tcynt_e" name="Thiocyanate exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_tcynt_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/tcynt" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_tcynt_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_fe3dhbzs_e" metaid="R_EX_fe3dhbzs_e" name="Ferric 2,3-dihydroxybenzoylserine exchange"
-      reversible="false" sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_fe3dhbzs_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/fe3dhbzs" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fe3dhbzs_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PPPGO" metaid="R_PPPGO" name="Protoporphyrinogen oxidase (aerobic)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PPPGO">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PPPGO" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.3.3.4" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103128" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3850" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_o2_c" stoichiometry="1.5" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pppg9_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="3" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppp9_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_feoxam_un_e" metaid="R_EX_feoxam_un_e" name="Ferroxamine minus Fe(3) exchange"
-      reversible="false" sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_feoxam_un_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/feoxam_un" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_feoxam_un_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_g3pc_e" metaid="R_EX_g3pc_e" name="Sn-Glycero-3-phosphocholine exchange"
-      reversible="false" sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_g3pc_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/g3pc" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_g3pc_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_g3pg_e" metaid="R_EX_g3pg_e" name="Glycerophosphoglycerol exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_g3pg_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/g3pg" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_g3pg_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_g3pi_e" metaid="R_EX_g3pi_e" name="Sn-Glycero-3-phospho-1-inositol exchange"
-      reversible="false" sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_g3pi_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/g3pi" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_g3pi_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_g3ps_e" metaid="R_EX_g3ps_e" name="Glycerophosphoserine exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_g3ps_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/g3ps" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_g3ps_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_peamn_e" metaid="R_EX_peamn_e" name="Phenethylamine exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_peamn_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/peamn" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_peamn_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_34dhpac_e" metaid="R_EX_34dhpac_e" name="3,4-Dihydroxyphenylacetaldehyde exchange"
-      reversible="false" sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_34dhpac_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/34dhpac" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_34dhpac_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_DAMPtex" metaid="R_DAMPtex"
-      name="DAMP transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DAMPtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DAMPtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97136" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_damp_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_damp_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_DCMPtex" metaid="R_DCMPtex"
-      name="DCMP transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DCMPtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DCMPtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97186" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dcmp_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dcmp_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_DGMPtex" metaid="R_DGMPtex"
-      name="DGMP transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DGMPtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DGMPtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97322" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dgmp_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dgmp_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_DTMPtex" metaid="R_DTMPtex"
-      name="DTMP transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DTMPtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DTMPtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97806" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dtmp_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dtmp_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_GMPtex" metaid="R_GMPtex"
-      name="GMP transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GMPtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GMPtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-565" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100386" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gmp_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gmp_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_IMPtex" metaid="R_IMPtex"
-      name="IMP transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_IMPtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/IMPtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-566" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100831" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_imp_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_imp_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_UMPtex" metaid="R_UMPtex"
-      name="UMP transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_UMPtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/UMPtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105127" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27926" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27927" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27928" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27929" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ump_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ump_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_G1Ptex" metaid="R_G1Ptex" name="D-glucose 1-phosphate transport via diffusion"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_G1Ptex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/G1Ptex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99849" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_g1p_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g1p_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ADNK1" metaid="R_ADNK1" name="Adenosine kinase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ADNK1">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ADNK1" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ADENOSINE-KINASE-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.1.20" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.1.74" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00185" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95456" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20824" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20825" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20826" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20827" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0474" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_adn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_amp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CUt3" metaid="R_CUt3" name="Copper transport out via proton antiport" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CUt3">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CUt3" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96953" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b0573" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0572" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0574" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0575" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cu_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cu_e" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ZN2t3pp" metaid="R_ZN2t3pp"
-      name="Zinc (Zn+2) transport out via proton antiport (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ZN2t3pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ZN2t3pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-200" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105278" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28839" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28840" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28841" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28842" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b3915" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0752" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_zn2_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_zn2_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_SKMtex" metaid="R_SKMtex"
-      name="Shikimate transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_SKMtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/SKMtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104394" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_skm_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_skm_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MNt2pp" metaid="R_MNt2pp"
-      name="Manganese (Mn+2) transport in via proton symport (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MNt2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MNt2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-241" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101681" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29007" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29008" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29009" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29010" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2392" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mn2_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_mn2_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_MNtex" metaid="R_MNtex"
-      name="Manganese (Mn+2) transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MNtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MNtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-16" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-487" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101670" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28699" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28700" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28701" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28702" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mn2_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_mn2_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_GAL1Ptex" metaid="R_GAL1Ptex"
-      name="D-galactose 1-phosphate transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GAL1Ptex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GAL1Ptex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99923" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gal1p_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gal1p_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_O2Stex" metaid="R_O2Stex"
-      name="Superoxide anion transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_O2Stex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/O2Stex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102089" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_o2s_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_o2s_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_HEPK1" metaid="R_HEPK1" name="LPS heptose kinase I (LPS core synthesis)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_HEPK1">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/HEPK1" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100598" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3630" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_hhlipa_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_phhlipa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_HEPT3" metaid="R_HEPT3" name="Heptosyltransferase III (LPS core synthesis)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_HEPT3">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/HEPT3" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100606" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3632" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_adphep_LD_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_phhlipa_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_hphhlipa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_HEPK2" metaid="R_HEPK2" name="LPS heptose kinase II (LPS core synthesis)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_HEPK2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/HEPK2" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100599" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3625" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_hphhlipa_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_phphhlipa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ALDD3y" metaid="R_ALDD3y" name="Aldehyde dehydrogenase (propanal, NADP)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ALDD3y">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ALDD3y" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95754" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b4269" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3588" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3011" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ppal_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadph_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_R5PP" metaid="R_R5PP" name="Ribose 5-phosphate phosphatase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_R5PP">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/R5PP" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103410" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2293" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2690" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0822" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0675" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3697" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_r5p_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_rib__D_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_xmp_e" metaid="R_EX_xmp_e" name="Xanthosine 5'-phosphate exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_xmp_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/xmp" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_xmp_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_damp_e" metaid="R_EX_damp_e" name="DAMP exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_damp_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/damp" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_damp_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CYSSADS" metaid="R_CYSSADS" name="L-cysteine sulfinic acid desulfurase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CYSSADS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CYSSADS" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.1.1.12" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.4.1.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00863" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97008" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2810" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1680" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3sala_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="2" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ala__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_so2_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_dimp_e" metaid="R_EX_dimp_e" name="DIMP exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_dimp_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/dimp" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dimp_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CPPPGO2" metaid="R_CPPPGO2" name="Oxygen Independent coproporphyrinogen-III oxidase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CPPPGO2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CPPPGO2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:HEMN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.3.98.3" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.3.99.22" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R06895" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96881" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15425" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15426" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15427" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15428" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3867" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_amet_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cpppg3_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dad_5_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_met__L_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pppg9_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_isetac_e" metaid="R_EX_isetac_e" name="Isethionic acid exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_isetac_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/isetac" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_isetac_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_AGM3PH" metaid="R_AGM3PH"
-      name="N-Acetyl-D-glucosamine(anhydrous)N-Acetylmuramyl-tripeptide beta -1,4-N-acetylglucosaminidase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_AGM3PH">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/AGM3PH" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95544" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1107" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_anhgm3p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_acgam_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_anhm3p_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_HOMt2pp" metaid="R_HOMt2pp" name="L-homoserineserine efflux via proton symport"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_HOMt2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/HOMt2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-242" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100676" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29003" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29004" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29005" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29006" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0813" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3824" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_hom__L_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_hom__L_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_HOMtex" metaid="R_HOMtex"
-      name="L-homoserine transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_HOMtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/HOMtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100678" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_hom__L_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_hom__L_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_SO2tex" metaid="R_SO2tex"
-      name="SO2 transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_SO2tex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/SO2tex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104456" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_so2_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_so2_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_SO2tpp" metaid="R_SO2tpp" name="SO2 transport via diffusion (periplasm)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_SO2tpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/SO2tpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104456" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_s0001" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_so2_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_so2_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LDH_D2" metaid="R_LDH_D2" name="D-lactate dehydrogenase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LDH_D2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LDH_D2" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101039" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29079" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29080" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29081" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29082" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2133" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_lac__D_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_q8_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pyr_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_q8h2_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_SHCHF" metaid="R_SHCHF" name="Sirohydrochlorin ferrochelatase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_SHCHF">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/SHCHF" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:SIROHEME-FERROCHELAT-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.99.1.4" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02864" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104375" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24360" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24361" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24362" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24363" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3368" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fe2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_scl_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="3" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_sheme_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_SUCBZL" metaid="R_SUCBZL" name="O-succinylbenzoate-CoA ligase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_SUCBZL">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/SUCBZL" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:O-SUCCINYLBENZOATE-COA-LIG-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/6.2.1.26" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R04030" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104612" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17009" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17010" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17011" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17012" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2260" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_coa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_sucbz_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_amp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_sbzcoa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CYSDDS" metaid="R_CYSDDS" name="D-cysteine desulfhydrase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CYSDDS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CYSDDS" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DCYSDESULF-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.4.1.15" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01874" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96992" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11268" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11269" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11270" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11271" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1919" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cys__D_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2s_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nh4_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pyr_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CYStpp" metaid="R_CYStpp" name="L-cysteine export via facilitated transport"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CYStpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CYStpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-1924" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97029" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29655" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29656" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29657" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29658" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2578" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1533" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cys__L_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cys__L_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ACSERtpp" metaid="R_ACSERtpp" name="O-Acetyl-L-serine export via facilitated transport"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ACSERtpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ACSERtpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-1923" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95416" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29659" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29660" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29661" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29662" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2578" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1533" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_acser_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_acser_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ACSERtex" metaid="R_ACSERtex"
-      name="O-Acetyl-L-serine transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ACSERtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ACSERtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-1923" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95416" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29659" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29660" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29661" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29662" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_acser_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_acser_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LALDO3" metaid="R_LALDO3" name="L-Lactaldehyde:NADP+ 1-oxidoreductase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LALDO3">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LALDO3" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:1.1.1.283-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.283" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.2.1.49" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02260" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101010" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21748" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21749" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21750" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21751" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mthgxl_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_lald__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NTP10" metaid="R_NTP10" name="Nucleoside-triphosphatase (ITP)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NTP10">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NTP10" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-5073" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00719" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100892" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28330" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28331" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28332" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28333" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b4161" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4394" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_itp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_idp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PRAIS" metaid="R_PRAIS" name="Phosphoribosylaminoimidazole synthase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PRAIS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PRAIS" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/6.3.3.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103157" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23032" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23033" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23034" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23035" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2499" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fpram_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_air_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GDMANE" metaid="R_GDMANE" name="GDP-4-dehydro-6-deoxy-D-mannose epimerase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GDMANE">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GDMANE" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100087" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2052" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gdpddman_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gdpofuc_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GPDDA4" metaid="R_GPDDA4"
-      name="Glycerophosphodiester phosphodiesterase (Glycerophosphoglycerol)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GPDDA4">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GPDDA4" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-14073" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.4.46" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100413" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3449" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_g3pg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glyc3p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glyc_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LPLIPAL2E140" metaid="R_LPLIPAL2E140"
-      name="Lysophospholipase L2 (2-acylglycerophosphoethanolamine, n-C14:0)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LPLIPAL2E140">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LPLIPAL2E140" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101184" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3825" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2agpe140_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g3pe_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ttdca_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LPLIPAL2E180" metaid="R_LPLIPAL2E180"
-      name="Lysophospholipase L2 (2-acylglycerophosphoethanolamine, n-C18:0)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LPLIPAL2E180">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LPLIPAL2E180" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.1.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101188" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3825" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2agpe180_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g3pe_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ocdca_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LPLIPAL2G161" metaid="R_LPLIPAL2G161"
-      name="Lysophospholipase L2 (2-acylglycerophosphoglycerol, n-C16:1)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LPLIPAL2G161">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LPLIPAL2G161" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101194" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3825" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2agpg161_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g3pg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_hdcea_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LPLIPAL2G181" metaid="R_LPLIPAL2G181"
-      name="Lysophospholipase L2 (2-acylglycerophosphoglycerol, n-C18:1)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LPLIPAL2G181">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LPLIPAL2G181" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101196" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3825" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2agpg181_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g3pg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ocdcea_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_2AGPE120tipp" metaid="R_2AGPE120tipp"
-      name="2-Acyl-sn-glycero-3-phosphoethanolamine (n-C12:0) transporter via facilitated diffusion (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_2AGPE120tipp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/2AGPE120tipp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94750" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2835" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2agpe120_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2agpe120_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_AACPS6" metaid="R_AACPS6" name="Acyl-[acyl-carrier-protein] synthetase  (n-C18:0)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_AACPS6">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/AACPS6" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/6.2.1.20" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95145" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b1094" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2836" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ocdca_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_amp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ocdcaACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_AACPS7" metaid="R_AACPS7" name="Acyl-[acyl-carrier-protein] synthetase  (n-C12:0)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_AACPS7">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/AACPS7" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/6.2.1.l" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95146" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b1094" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2836" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ddca_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_amp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ddcaACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_G3PGabcpp" metaid="R_G3PGabcpp"
-      name="Sn-glycerol-3-phosphoglycerol transport via ABC system (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_G3PGabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/G3PGabcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99885" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b3453" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3450" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3451" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3452" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_g3pg_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g3pg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_G3PIabcpp" metaid="R_G3PIabcpp"
-      name="Sn-glycerol-3-phosphoethanolamine transport via ABC system (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_G3PIabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/G3PIabcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99887" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b3453" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3450" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3451" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3452" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_g3pi_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g3pi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_G3PSabcpp" metaid="R_G3PSabcpp"
-      name="Sn-glycerol-3-phosphoserine transport via ABC system (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_G3PSabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/G3PSabcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99892" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b3453" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3450" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3451" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3452" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_g3ps_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g3ps_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_QMO2" metaid="R_QMO2" name="Quinol monooxygenase (Ubiquinol-8)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_QMO2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/QMO2" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103392" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29175" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29176" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29177" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29178" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3029" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_o2_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_q8h2_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_o2s_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_q8_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_QMO3" metaid="R_QMO3" name="Quinol monooxygenase (menaquinol 8)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_QMO3">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/QMO3" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103393" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29183" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29184" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29185" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29186" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3029" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mql8_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_o2_c" stoichiometry="2" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_mqn8_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_o2s_c" stoichiometry="2" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LPLIPAL2E141" metaid="R_LPLIPAL2E141"
-      name="Lysophospholipase L2 (2-acylglycerophosphoethanolamine, n-C14:1)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LPLIPAL2E141">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LPLIPAL2E141" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101185" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3825" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2agpe141_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g3pe_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ttdcea_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LPLIPAL2E161" metaid="R_LPLIPAL2E161"
-      name="Lysophospholipase L2 (2-acylglycerophosphoethanolamine, n-C16:1)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LPLIPAL2E161">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LPLIPAL2E161" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101187" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3825" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2agpe161_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g3pe_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_hdcea_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LPLIPAL2E181" metaid="R_LPLIPAL2E181"
-      name="Lysophospholipase L2 (2-acylglycerophosphoethanolamine, n-C18:1)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LPLIPAL2E181">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LPLIPAL2E181" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101189" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3825" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2agpe181_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g3pe_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ocdcea_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LPLIPAL2G180" metaid="R_LPLIPAL2G180"
-      name="Lysophospholipase L2 (2-acylglycerophosphoglycerol, n-C18:0)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LPLIPAL2G180">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LPLIPAL2G180" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101195" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3825" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2agpg180_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g3pg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ocdca_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LPLIPAL2G141" metaid="R_LPLIPAL2G141"
-      name="Lysophospholipase L2 (2-acylglycerophosphoglycerol, n-C14:1)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LPLIPAL2G141">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LPLIPAL2G141" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101192" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3825" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2agpg141_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g3pg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ttdcea_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_2AGPA120tipp" metaid="R_2AGPA120tipp"
-      name="2-Acyl-sn-glycero-3-phosphatidate (n-C12:0) transporter via facilitated diffusion (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_2AGPA120tipp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/2AGPA120tipp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94743" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2835" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2ddecg3p_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2ddecg3p_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_2AGPG180tipp" metaid="R_2AGPG180tipp"
-      name="2-Acyl-sn-glycero-3-phosphoglycerol (n-C18:0) transporter via facilitated diffusion (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_2AGPG180tipp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/2AGPG180tipp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94769" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2835" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2agpg180_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2agpg180_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_IPDDI" metaid="R_IPDDI" name="Isopentenyl-diphosphate D-isomerase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_IPDDI">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/IPDDI" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:IPPISOM-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/5.3.3.2" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01123" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100796" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23284" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23285" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23286" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23287" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2889" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ipdp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dmpp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_2AGPGAT180" metaid="R_2AGPGAT180"
-      name="2-acyl-glycerophospho-glycerol acyltransferase (n-C18:0)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_2AGPGAT180">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/2AGPGAT180" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94776" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2836" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2agpg180_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ocdca_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_amp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pg180_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_2AGPGAT181" metaid="R_2AGPGAT181"
-      name="2-acyl-glycerophospho-glycerol acyltransferase (n-C18:1)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_2AGPGAT181">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/2AGPGAT181" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94777" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2836" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2agpg181_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ocdcea_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_amp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pg181_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LPLIPAL2ATG120" metaid="R_LPLIPAL2ATG120"
-      name="Lysophospholipase L2 (acyltransferase, 2-acyl-glycerophosphoglycerol, n-C12:0)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LPLIPAL2ATG120">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LPLIPAL2ATG120" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101176" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3825" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2agpg120_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pg120_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_apg120_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g3pg_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PLIPA1E140pp" metaid="R_PLIPA1E140pp"
-      name="Phospholipase A1 (phosphatidylethanolamine, n-C14:0) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PLIPA1E140pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PLIPA1E140pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102975" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3821" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pe140_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2agpe140_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ttdca_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PLIPA1E160pp" metaid="R_PLIPA1E160pp"
-      name="Phospholipase A1 (phosphatidylethanolamine, n-C16:0) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PLIPA1E160pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PLIPA1E160pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.1.32" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102977" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3821" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pe160_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2agpe160_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_hdca_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PLIPA1E161pp" metaid="R_PLIPA1E161pp"
-      name="Phospholipase A1 (phosphatidylethanolamine, n-C16:1) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PLIPA1E161pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PLIPA1E161pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102978" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3821" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pe161_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2agpe161_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_hdcea_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_AACPS8" metaid="R_AACPS8" name="Acyl-[acyl-carrier-protein] synthetase  (n-C10:0)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_AACPS8">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/AACPS8" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/6.2.1.20" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95147" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b1094" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2836" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dca_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_amp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dcaACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_AACPS9" metaid="R_AACPS9" name="Acyl-[acyl-carrier-protein] synthetase  (n-C8:0)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_AACPS9">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/AACPS9" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/6.2.1.l" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95148" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b1094" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2836" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_octa_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_amp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ocACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_HXCT" metaid="R_HXCT" name="Acetyl-CoA:hexanoate-CoA transferase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_HXCT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/HXCT" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.8.3.8" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100751" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b2222" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2221" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_accoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_hxa_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ac_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_hxcoa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_2AGPEAT160" metaid="R_2AGPEAT160"
-      name="2-acyl-glycerophospho-ethanolamine acyltransferase (n-C16:0)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_2AGPEAT160">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/2AGPEAT160" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.40" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94760" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2836" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2agpe160_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_hdca_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_amp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pe160_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_DURADx" metaid="R_DURADx" name="Dihydrouracil dehydrogenase (NAD)" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DURADx">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DURADx" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.3.1.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00977" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97816" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20189" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20190" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20191" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20192" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b2147" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2146" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_56dura_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nad_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadh_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ura_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ECOAH7" metaid="R_ECOAH7"
-      name="3-hydroxyacyl-CoA dehydratase (3-hydroxyhexadecanoyl-CoA)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ECOAH7">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ECOAH7" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-14272" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.17" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.74" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R04738" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97892" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/31163" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/31164" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/31165" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/31166" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2341" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3846" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3hhdcoa_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_hdd2coa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_G1PPpp" metaid="R_G1PPpp" name="Glucose-1-phosphatase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_G1PPpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/G1PPpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLUCOSE-1-PHOSPHAT-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-17330" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.10" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00304" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99844" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19933" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19934" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19935" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19936" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1002" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0383" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_g1p_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glc__D_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GALCTND" metaid="R_GALCTND" name="Galactonate dehydratase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GALCTND">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GALCTND" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GALACTONDEHYDRAT-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.140" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.6" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R03033" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99957" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18649" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18650" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18651" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18652" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4478" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_galctn__D_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2dh3dgal_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GCALDD" metaid="R_GCALDD" name="Glycolaldehyde dehydrogenase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GCALDD">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GCALDD" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLYCOLALD-DEHYDROG-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.2.1.21" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01333" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100060" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20001" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20002" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20003" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20004" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1415" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gcald_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nad_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glyclt_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadh_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_HISTP" metaid="R_HISTP" name="Histidinol-phosphatase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_HISTP">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/HISTP" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:HISTIDPHOS-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.15" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R03013" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100642" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14465" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14466" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14467" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14468" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2022" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_hisp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_histd_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_LDH_D" metaid="R_LDH_D" name="D-lactate dehydrogenase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LDH_D">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LDH_D" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DLACTDEHYDROGNAD-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.28" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00704" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101037" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16369" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16370" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16371" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16372" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1380" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_lac__D_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nad_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadh_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pyr_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_AMALT4" metaid="R_AMALT4" name="Amylomaltase (maltohexaose)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_AMALT4">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/AMALT4" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:MALTODEG-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.4.1.25" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95803" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3416" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_malt_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_malthx_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glc__D_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_malthp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NTD11" metaid="R_NTD11" name="5'-nucleotidase (IMP)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NTD11">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NTD11" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-7607" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.99" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01126" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102030" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27718" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27719" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27720" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27721" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2744" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3399" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_imp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ins_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ORNDC" metaid="R_ORNDC" name="Ornithine Decarboxylase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ORNDC">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ORNDC" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ORNDECARBOX-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.1.1.17" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00670" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102209" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22964" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22965" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22966" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22967" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2965" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0693" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_orn_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ptrc_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_UPP3MT" metaid="R_UPP3MT" name="Uroporphyrinogen methyltransferase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_UPP3MT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/UPP3MT" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-13403" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.1.1.107" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R03194" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105137" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/32459" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/32460" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/32461" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/32462" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3368" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_amet_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_uppg3_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ahcys_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dscl_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_KAS15" metaid="R_KAS15" name="Beta-ketoacyl-ACP synthase (2)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_KAS15">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/KAS15" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:2.3.1.180-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.180" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R10707" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100913" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1091" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_accoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_malACP_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_actACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_coa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ALAALAtex" metaid="R_ALAALAtex"
-      name="D-alanyl-D-alanine (DalaDala) transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ALAALAtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ALAALAtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95679" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_alaala_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_alaala_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FACOAL181t2pp" metaid="R_FACOAL181t2pp"
-      name="Fatty-acid-CoA ligase (octadecenoate transport via vectoral Co-A coupling)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FACOAL181t2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FACOAL181t2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99173" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1805" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1701" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_coa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ocdcea_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_amp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_odecoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_T2DECAI" metaid="R_T2DECAI" name="Trans-2-decenoyl-ACP isomerase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_T2DECAI">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/T2DECAI" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104659" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0954" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_tdec2eACP_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cdec3eACP_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_3OAS161" metaid="R_3OAS161" name="3-oxoacyl-[acyl-carrier-protein] synthase (n-C16:1)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_3OAS161">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/3OAS161" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.41" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94960" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2323" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_malACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_tdeACP_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3ocpalm9eACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EAR141y" metaid="R_EAR141y" name="Enoyl-[acyl-carrier-protein] reductase (NADPH) (n-C14:1)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EAR141y">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/EAR141y" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.3.1.10" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97854" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1288" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_t3c7mrseACP_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_tdeACP_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EAR161x" metaid="R_EAR161x" name="Enoyl-[acyl-carrier-protein] reductase (NADH) (n-C16:1)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EAR161x">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/EAR161x" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.3.1.9" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97857" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1288" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadh_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_t3c9palmeACP_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_hdeACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nad_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DASYN160" metaid="R_DASYN160" name="CDP-diacylglycerol synthetase (n-C16:0)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DASYN160">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DASYN160" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.7.41" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97157" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0175" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ctp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pa160_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cdpdhdecg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DASYN161" metaid="R_DASYN161" name="CDP-diacylglycerol synthetase (n-C16:1)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DASYN161">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DASYN161" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.7.41" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97159" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0175" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ctp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pa161_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cdpdhdec9eg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DASYN181" metaid="R_DASYN181" name="CDP-diacylglycerol synthetase (n-C18:1)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DASYN181">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DASYN181" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.7.41" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97161" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0175" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ctp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pa181_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cdpdodec11eg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CDAPPA161" metaid="R_CDAPPA161" name="CDP-Diacylglycerol pyrophostatase (n-C16:1)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CDAPPA161">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CDAPPA161" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.26" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96505" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3918" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cdpdhdec9eg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cmp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pa161_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PGSA180" metaid="R_PGSA180" name="Phosphatidylglycerol synthase (n-C18:0)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PGSA180">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PGSA180" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.8.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102595" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1912" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cdpdodecg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glyc3p_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cmp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pgp180_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PSSA140" metaid="R_PSSA140" name="Phosphatidylserine syntase (n-C14:0)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PSSA140">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PSSA140" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103267" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2585" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cdpdtdecg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ser__L_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cmp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ps140_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_2AGPGAT141" metaid="R_2AGPGAT141"
-      name="2-acyl-glycerophospho-glycerol acyltransferase (n-C14:1)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_2AGPGAT141">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/2AGPGAT141" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94773" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2836" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2agpg141_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ttdcea_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_amp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pg141_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FACOAE180" metaid="R_FACOAE180" name="Fatty-acid-CoA thioesterase (octadecanoate)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FACOAE180">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FACOAE180" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-9624" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.2.2" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R08174" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99133" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30139" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30140" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30141" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30142" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0452" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_stcoa_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_coa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ocdca_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FACOAE100" metaid="R_FACOAE100" name="Fatty-acid-CoA thioesterase (decanoate)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FACOAE100">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FACOAE100" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.2.2" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99127" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0452" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dcacoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_coa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dca_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FACOAE80" metaid="R_FACOAE80" name="Fatty-acid-CoA thioesterase (octanoate)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FACOAE80">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FACOAE80" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99140" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30143" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30144" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30145" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30146" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0452" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_occoa_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_coa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_octa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FACOAE60" metaid="R_FACOAE60" name="Fatty-acid-CoA thioesterase (hexanoate)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FACOAE60">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FACOAE60" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99139" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0452" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_hxcoa_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_coa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_hxa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PLIPA1E120pp" metaid="R_PLIPA1E120pp"
-      name="Phospholipase A1 (phosphatidylethanolamine, n-C12:0) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PLIPA1E120pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PLIPA1E120pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102974" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3821" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pe120_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2agpe120_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ddca_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_MALtex" metaid="R_MALtex"
-      name="Malate transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MALtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MALtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-224" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-225" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101367" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mal__L_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_mal__L_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_NO3tex" metaid="R_NO3tex"
-      name="Nitrate transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NO3tex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NO3tex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101992" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34923" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34924" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34925" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34926" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_no3_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_no3_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_3OAS141" metaid="R_3OAS141" name="3-oxoacyl-[acyl-carrier-protein] synthase (n-C14:1)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_3OAS141">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/3OAS141" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.41" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94958" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2323" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cddec5eACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_malACP_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3ocmrs7eACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_3OAR121" metaid="R_3OAR121" name="3-oxoacyl-[acyl-carrier-protein] reductase (n-C12:1)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_3OAR121">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/3OAR121" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.100" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94943" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1093" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3ocddec5eACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3hcddec5eACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CFAS160G" metaid="R_CFAS160G"
-      name="Cyclopropane fatty acid synthase (Phosphatidylglycerol, n-C16:0)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CFAS160G">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CFAS160G" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.1.1.79" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96653" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1661" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_amet_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pg161_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ahcys_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cpg160_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_URAt2pp" metaid="R_URAt2pp" name="Uracil transport in via proton symport (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_URAt2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/URAt2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-132" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105148" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29239" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29240" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29241" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29242" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2497" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1006" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ura_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ura_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FACOAE141" metaid="R_FACOAE141" name="Fatty-acid-CoA thioesterase (tetradecenoate)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FACOAE141">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FACOAE141" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99130" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0452" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_tdecoa_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_coa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ttdcea_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FACOAE161" metaid="R_FACOAE161" name="Fatty-acid-CoA thioesterase (hexadecenoate)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FACOAE161">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FACOAE161" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99132" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0452" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_hdcoa_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_coa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_hdcea_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_TTDCEAtexi" metaid="R_TTDCEAtexi"
-      name="Tetradecenoate transport via facilitated irreversible diffusion (extracellular to periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_TTDCEAtexi">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/TTDCEAtexi" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99096" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2344" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ttdcea_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ttdcea_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_HDCEAtexi" metaid="R_HDCEAtexi"
-      name="Hexadecenoate transport via facilitated irreversible diffusion (extracellular to periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_HDCEAtexi">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/HDCEAtexi" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99102" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2344" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_hdcea_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_hdcea_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ALAALAD" metaid="R_ALAALAD" name="D-alanine-D-alanine dipeptidase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ALAALAD">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ALAALAD" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:3.4.13.22-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.4.13.22" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R07651" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95675" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20661" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20662" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20663" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20664" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1488" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_alaala_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ala__D_c" stoichiometry="2" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_2AGPEAT180" metaid="R_2AGPEAT180"
-      name="2-acyl-glycerophospho-ethanolamine acyltransferase (n-C18:0)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_2AGPEAT180">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/2AGPEAT180" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.40" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94762" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2836" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2agpe180_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ocdca_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_amp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pe180_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_2AGPEAT181" metaid="R_2AGPEAT181"
-      name="2-acyl-glycerophospho-ethanolamine acyltransferase (n-C18:1)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_2AGPEAT181">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/2AGPEAT181" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94763" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2836" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2agpe181_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ocdcea_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_amp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pe181_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_2AGPGAT140" metaid="R_2AGPGAT140"
-      name="2-acyl-glycerophospho-glycerol acyltransferase (n-C14:0)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_2AGPGAT140">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/2AGPGAT140" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94772" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2836" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2agpg140_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ttdca_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_amp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pg140_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PLIPA1E181pp" metaid="R_PLIPA1E181pp"
-      name="Phospholipase A1 (phosphatidylethanolamine, n-C18:1) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PLIPA1E181pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PLIPA1E181pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102980" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3821" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pe181_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2agpe181_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ocdcea_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PLIPA1G180pp" metaid="R_PLIPA1G180pp"
-      name="Phospholipase A1 (phosphatidylglycerol, n-C18:0) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PLIPA1G180pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PLIPA1G180pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102986" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3821" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pg180_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2agpg180_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ocdca_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PLIPA1G181pp" metaid="R_PLIPA1G181pp"
-      name="Phospholipase A1 (phosphatidylglycerol, n-C18:1) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PLIPA1G181pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PLIPA1G181pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102987" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3821" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pg181_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2agpg181_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ocdcea_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ALAALAabcpp" metaid="R_ALAALAabcpp"
-      name="D-alanyl-D-alanine (DalaDala) transport via ABC system (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ALAALAabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ALAALAabcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95677" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b3540" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3542" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3544" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3543" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3541" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b1485" />
-              <fbc:geneProductRef fbc:geneProduct="G_b1486" />
-              <fbc:geneProductRef fbc:geneProduct="G_b1487" />
-              <fbc:geneProductRef fbc:geneProduct="G_b1483" />
-              <fbc:geneProductRef fbc:geneProduct="G_b1484" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_alaala_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_alaala_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_HEXt2rpp" metaid="R_HEXt2rpp"
-      name="Hexanoate transport via proton symport, reversible (periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_HEXt2rpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/HEXt2rpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100622" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2223" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_hxa_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_hxa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_G3PEabcpp" metaid="R_G3PEabcpp"
-      name="Sn-glycerol-3-phosphoethanolamine transport via ABC system (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_G3PEabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/G3PEabcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99883" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b3453" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3450" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3451" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3452" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_g3pe_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g3pe_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_G3PCabcpp" metaid="R_G3PCabcpp"
-      name="Sn-glycerol-3-phosphocholine transport via ABC system (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_G3PCabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/G3PCabcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99873" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b3453" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3450" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3451" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3452" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_g3pc_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g3pc_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_2AGPGAT161" metaid="R_2AGPGAT161"
-      name="2-acyl-glycerophospho-glycerol acyltransferase (n-C16:1)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_2AGPGAT161">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/2AGPGAT161" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94775" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2836" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2agpg161_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_hdcea_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_amp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pg161_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_AMPTASEPG" metaid="R_AMPTASEPG" name="Aminopeptidase (pro-gly)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_AMPTASEPG">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/AMPTASEPG" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95829" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28799" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28800" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28801" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28802" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b4260" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2523" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0932" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0237" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_progly_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gly_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pro__L_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PROGLYabcpp" metaid="R_PROGLYabcpp"
-      name="L-Prolinylglycine (Pro-Gly) transport via ABC system (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PROGLYabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PROGLYabcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103190" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b3541" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3542" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3544" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3540" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3543" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_progly_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_progly_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GTHRDabcpp" metaid="R_GTHRDabcpp" name="Reduced glutathione via ABC system (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GTHRDabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GTHRDabcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-11" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100448" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29787#2" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29788#2" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29789#2" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29790#2" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29791#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29792#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29793#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29794#1" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b0829" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0831" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0830" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0832" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gthrd_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gthrd_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_2AGPG140tipp" metaid="R_2AGPG140tipp"
-      name="2-Acyl-sn-glycero-3-phosphoglycerol (n-C14:0) transporter via facilitated diffusion (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_2AGPG140tipp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/2AGPG140tipp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94765" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2835" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2agpg140_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2agpg140_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_2AGPG160tipp" metaid="R_2AGPG160tipp"
-      name="2-Acyl-sn-glycero-3-phosphoglycerol (n-C16:0) transporter via facilitated diffusion (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_2AGPG160tipp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/2AGPG160tipp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94767" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2835" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2agpg160_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2agpg160_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_2AGPG141tipp" metaid="R_2AGPG141tipp"
-      name="2-Acyl-sn-glycero-3-phosphoglycerol (n-C14:1) transporter via facilitated diffusion (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_2AGPG141tipp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/2AGPG141tipp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94766" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2835" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2agpg141_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2agpg141_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_2AGPG161tipp" metaid="R_2AGPG161tipp"
-      name="2-Acyl-sn-glycero-3-phosphoglycerol (n-C16:1) transporter via facilitated diffusion (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_2AGPG161tipp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/2AGPG161tipp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94768" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2835" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2agpg161_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2agpg161_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_2AGPG181tipp" metaid="R_2AGPG181tipp"
-      name="2-Acyl-sn-glycero-3-phosphoglycerol (n-C18:1) transporter via facilitated diffusion (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_2AGPG181tipp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/2AGPG181tipp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94770" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2835" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2agpg181_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2agpg181_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_2AGPEAT140" metaid="R_2AGPEAT140"
-      name="2-acyl-glycerophospho-ethanolamine acyltransferase (n-C14:0)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_2AGPEAT140">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/2AGPEAT140" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94758" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2836" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2agpe140_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ttdca_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_amp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pe140_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_2AGPEAT120" metaid="R_2AGPEAT120"
-      name="2-acyl-glycerophospho-ethanolamine acyltransferase (n-C12:0)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_2AGPEAT120">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/2AGPEAT120" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94757" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2836" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2agpe120_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ddca_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_amp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pe120_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_2AGPEAT161" metaid="R_2AGPEAT161"
-      name="2-acyl-glycerophospho-ethanolamine acyltransferase (n-C16:1)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_2AGPEAT161">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/2AGPEAT161" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94761" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2836" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2agpe161_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_hdcea_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_amp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pe161_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_2AGPEAT141" metaid="R_2AGPEAT141"
-      name="2-acyl-glycerophospho-ethanolamine acyltransferase (n-C14:1)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_2AGPEAT141">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/2AGPEAT141" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94759" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2836" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2agpe141_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ttdcea_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_amp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pe141_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_2AGPGAT160" metaid="R_2AGPGAT160"
-      name="2-acyl-glycerophospho-glycerol acyltransferase (n-C16:0)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_2AGPGAT160">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/2AGPGAT160" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94774" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2836" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2agpg160_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_hdca_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_amp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pg160_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LPLIPAL2ATG140" metaid="R_LPLIPAL2ATG140"
-      name="Lysophospholipase L2 (acyltransferase, 2-acyl-glycerophosphoglycerol, n-C14:0)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LPLIPAL2ATG140">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LPLIPAL2ATG140" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101177" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3825" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2agpg140_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pg140_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_apg140_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g3pg_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LPLIPAL2ATG141" metaid="R_LPLIPAL2ATG141"
-      name="Lysophospholipase L2 (acyltransferase, 2-acyl-glycerophosphoglycerol, n-C14:1)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LPLIPAL2ATG141">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LPLIPAL2ATG141" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101178" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3825" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2agpg141_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pg141_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_apg141_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g3pg_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LPLIPAL2ATG160" metaid="R_LPLIPAL2ATG160"
-      name="Lysophospholipase L2 (acyltransferase, 2-acyl-glycerophosphoglycerol, n-C16:0)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LPLIPAL2ATG160">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LPLIPAL2ATG160" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101179" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3825" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2agpg160_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pg160_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_apg160_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g3pg_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LPLIPAL2ATG180" metaid="R_LPLIPAL2ATG180"
-      name="Lysophospholipase L2 (acyltransferase, 2-acyl-glycerophosphoglycerol, n-C18:0)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LPLIPAL2ATG180">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LPLIPAL2ATG180" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101181" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3825" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2agpg180_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pg180_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_apg180_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g3pg_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LPLIPAL2ATG161" metaid="R_LPLIPAL2ATG161"
-      name="Lysophospholipase L2 (acyltransferase, 2-acyl-glycerophosphoglycerol, n-C16:1)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LPLIPAL2ATG161">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LPLIPAL2ATG161" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101180" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3825" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2agpg161_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pg161_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_apg161_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g3pg_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LPLIPAL2ATG181" metaid="R_LPLIPAL2ATG181"
-      name="Lysophospholipase L2 (acyltransferase, 2-acyl-glycerophosphoglycerol, n-C18:1)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LPLIPAL2ATG181">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LPLIPAL2ATG181" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101182" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3825" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2agpg181_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pg181_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_apg181_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g3pg_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_CLPNS180pp" metaid="R_CLPNS180pp" name="Cardiolipin synthase (periplasmic, n-C18:0)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CLPNS180pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CLPNS180pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96787" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1249" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0789" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pg180_p" stoichiometry="2" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_clpn180_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glyc_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_CLPNS181pp" metaid="R_CLPNS181pp" name="Cardiolipin synthase (periplasmic, n-C18:1)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CLPNS181pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CLPNS181pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96788" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1249" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0789" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pg181_p" stoichiometry="2" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_clpn181_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glyc_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PG161abcpp" metaid="R_PG161abcpp"
-      name="Phosphatidylglycerol transport via ABC system (n-C16:1, periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PG161abcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PG161abcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102520" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0914" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pg161_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pg161_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PGP120abcpp" metaid="R_PGP120abcpp"
-      name="Phosphatidylglycerophosphate transport via ABC system (n-C12:0, periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PGP120abcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PGP120abcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102550" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0914" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pgp120_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pgp120_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PGP161abcpp" metaid="R_PGP161abcpp"
-      name="Phosphatidylglycerophosphate transport via ABC system (n-C16:1, periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PGP161abcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PGP161abcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102554" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0914" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pgp161_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pgp161_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PGP181abcpp" metaid="R_PGP181abcpp"
-      name="Phosphatidylglycerophosphate transport via ABC system (n-C18:1, periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PGP181abcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PGP181abcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102558" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0914" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pgp181_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pgp181_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PA120abcpp" metaid="R_PA120abcpp"
-      name="Phosphatidate transport via ABC system (n-C12:0, periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PA120abcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PA120abcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102304" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0914" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pa120_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pa120_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PLIPA1G120pp" metaid="R_PLIPA1G120pp"
-      name="Phospholipase A1 (phosphatidylglycerol, n-C12:0) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PLIPA1G120pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PLIPA1G120pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102981" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3821" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pg120_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2agpg120_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ddca_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_CLPNS120pp" metaid="R_CLPNS120pp" name="Cardiolipin synthase (periplasmic, n-C12:0)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CLPNS120pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CLPNS120pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96781" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0789" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1249" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pg120_p" stoichiometry="2" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_clpn120_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glyc_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ALPATE160pp" metaid="R_ALPATE160pp"
-      name="Apolipoprotein N-acyltransferase (phosphatidylethanolamine, periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ALPATE160pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ALPATE160pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95782" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b1677" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0657" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_alpp_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pe160_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2agpe160_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_lpp_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ALPATG160pp" metaid="R_ALPATG160pp"
-      name="Apolipoprotein N-acyltransferase (phosphatidylglycerol, periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ALPATG160pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ALPATG160pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95784" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b1677" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0657" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_alpp_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pg160_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2agpg160_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_lpp_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_2AGPGAT120" metaid="R_2AGPGAT120"
-      name="2-acyl-glycerophospho-glycerol acyltransferase (n-C12:0)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_2AGPGAT120">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/2AGPGAT120" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94771" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2836" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2agpg120_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ddca_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_amp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pg120_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LPLIPAL2ATE120" metaid="R_LPLIPAL2ATE120"
-      name="Lysophospholipase L2 (acyltransferase, 2-acyl-glycerophosphoethanolamine, n-C12:0)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LPLIPAL2ATE120">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LPLIPAL2ATE120" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101169" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3825" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2agpe120_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pg120_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_apg120_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g3pe_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LPLIPAL2ATE140" metaid="R_LPLIPAL2ATE140"
-      name="Lysophospholipase L2 (acyltransferase, 2-acyl-glycerophosphoethanolamine, n-C14:0)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LPLIPAL2ATE140">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LPLIPAL2ATE140" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101170" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3825" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2agpe140_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pg140_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_apg140_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g3pe_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LPLIPAL2ATE160" metaid="R_LPLIPAL2ATE160"
-      name="Lysophospholipase L2 (acyltransferase, 2-acyl-glycerophosphoethanolamine, n-C16:0)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LPLIPAL2ATE160">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LPLIPAL2ATE160" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101172" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3825" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2agpe160_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pg160_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_apg160_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g3pe_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LPLIPAL2ATE180" metaid="R_LPLIPAL2ATE180"
-      name="Lysophospholipase L2 (acyltransferase, 2-acyl-glycerophosphoethanolamine, n-C18:0)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LPLIPAL2ATE180">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LPLIPAL2ATE180" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101174" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3825" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2agpe180_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pg180_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_apg180_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g3pe_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LPLIPAL2ATE141" metaid="R_LPLIPAL2ATE141"
-      name="Lysophospholipase L2 (acyltransferase, 2-acyl-glycerophosphoethanolamine, n-C14:1)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LPLIPAL2ATE141">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LPLIPAL2ATE141" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101171" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3825" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2agpe141_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pg141_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_apg141_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g3pe_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LPLIPAL2ATE161" metaid="R_LPLIPAL2ATE161"
-      name="Lysophospholipase L2 (acyltransferase, 2-acyl-glycerophosphoethanolamine, n-C16:1)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LPLIPAL2ATE161">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LPLIPAL2ATE161" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101173" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3825" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2agpe161_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pg161_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_apg161_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g3pe_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LPLIPAL2ATE181" metaid="R_LPLIPAL2ATE181"
-      name="Lysophospholipase L2 (acyltransferase, 2-acyl-glycerophosphoethanolamine, n-C18:1)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LPLIPAL2ATE181">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LPLIPAL2ATE181" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101175" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3825" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2agpe181_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pg181_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_apg181_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g3pe_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FACOAL141t2pp" metaid="R_FACOAL141t2pp"
-      name="Fatty-acid-CoA ligase (tetradecenoate transport via vectoral Co-A coupling)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FACOAL141t2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FACOAL141t2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99149" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1701" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1805" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_coa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ttdcea_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_amp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_tdecoa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FACOAL161t2pp" metaid="R_FACOAL161t2pp"
-      name="Fatty-acid-CoA ligase (hexadecenoate transport via vectoral Co-A coupling)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FACOAL161t2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FACOAL161t2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99158" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1805" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1701" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_coa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_hdcea_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_amp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_hdcoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PA160abcpp" metaid="R_PA160abcpp"
-      name="Phosphatidate transport via ABC system (n-C16:0, periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PA160abcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PA160abcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102307" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0914" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pa160_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pa160_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PA181abcpp" metaid="R_PA181abcpp"
-      name="Phosphatidate transport via ABC system (n-C18:1, periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PA181abcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PA181abcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102310" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0914" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pa181_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pa181_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_12DGR141tipp" metaid="R_12DGR141tipp"
-      name="1,2 diacylglycerol transport via flipping (periplasm to cytoplasm, n-C14:1)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_12DGR141tipp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/12DGR141tipp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94677" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_12dgr141_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_12dgr141_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PGPP140pp" metaid="R_PGPP140pp"
-      name="Phosphatidylglycerol phosphate phosphatase (periplasm, n-C14:0)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PGPP140pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PGPP140pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102561" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0418" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1278" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pgp140_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pg140_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PGPP141pp" metaid="R_PGPP141pp"
-      name="Phosphatidylglycerol phosphate phosphatase (periplasm, n-C14:1)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PGPP141pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PGPP141pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102562" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0418" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1278" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pgp141_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pg141_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PGPP160pp" metaid="R_PGPP160pp"
-      name="Phosphatidylglycerol phosphate phosphatase (periplasm, n-C16:0)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PGPP160pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PGPP160pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.27" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102563" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0418" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1278" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pgp160_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pg160_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PGPP180pp" metaid="R_PGPP180pp"
-      name="Phosphatidylglycerol phosphate phosphatase (periplasm, n-C18:0)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PGPP180pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PGPP180pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.27" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102566" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0418" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1278" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pgp180_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pg180_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CLPNH141pp" metaid="R_CLPNH141pp" name="Cardiolipin hydrolase (periplasm, n-C14:1)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CLPNH141pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CLPNH141pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96776" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_clpn141_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pa141_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pg141_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CLPNH160pp" metaid="R_CLPNH160pp" name="Cardiolipin hydrolase (periplasm, n-C16:0)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CLPNH160pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CLPNH160pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96777" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_clpn160_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pa160_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pg160_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CLPNH161pp" metaid="R_CLPNH161pp" name="Cardiolipin hydrolase (periplasm, n-C16:1)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CLPNH161pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CLPNH161pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96778" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_clpn161_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pa161_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pg161_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CLPNH181pp" metaid="R_CLPNH181pp" name="Cardiolipin hydrolase (periplasm, n-C18:1)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CLPNH181pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CLPNH181pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96780" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_clpn181_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pa181_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pg181_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PLIPA1E180pp" metaid="R_PLIPA1E180pp"
-      name="Phospholipase A1 (phosphatidylethanolamine, n-C18:0) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PLIPA1E180pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PLIPA1E180pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.1.32" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102979" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3821" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pe180_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2agpe180_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ocdca_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PLIPA1G140pp" metaid="R_PLIPA1G140pp"
-      name="Phospholipase A1 (phosphatidylglycerol, n-C14:0) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PLIPA1G140pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PLIPA1G140pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102982" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3821" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pg140_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2agpg140_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ttdca_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PLIPA1G161pp" metaid="R_PLIPA1G161pp"
-      name="Phospholipase A1 (phosphatidylglycerol, n-C16:1) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PLIPA1G161pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PLIPA1G161pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102985" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3821" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pg161_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2agpg161_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_hdcea_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_CLPNS160pp" metaid="R_CLPNS160pp" name="Cardiolipin synthase (periplasmic, n-C16:0)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CLPNS160pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CLPNS160pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96784" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0789" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1249" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pg160_p" stoichiometry="2" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_clpn160_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glyc_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_CLPNS161pp" metaid="R_CLPNS161pp" name="Cardiolipin synthase (periplasmic, n-C16:1)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CLPNS161pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CLPNS161pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96786" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1249" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0789" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pg161_p" stoichiometry="2" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_clpn161_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glyc_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PG160abcpp" metaid="R_PG160abcpp"
-      name="Phosphatidylglycerol transport via ABC system (n-C16:0, periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PG160abcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PG160abcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102519" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0914" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pg160_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pg160_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PGP140abcpp" metaid="R_PGP140abcpp"
-      name="Phosphatidylglycerophosphate transport via ABC system (n-C14:0, periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PGP140abcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PGP140abcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102551" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0914" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pgp140_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pgp140_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PAPA120pp" metaid="R_PAPA120pp" name="Phosphatidate phosphatase (periplasmic, n-C12:0)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PAPA120pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PAPA120pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102347" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1278" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pa120_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_12dgr120_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PAPA140pp" metaid="R_PAPA140pp" name="Phosphatidate phosphatase (periplasmic, n-C14:0)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PAPA140pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PAPA140pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102348" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1278" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pa140_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_12dgr140_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PAPA141pp" metaid="R_PAPA141pp" name="Phosphatidate phosphatase (periplasmic, n-C14:1)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PAPA141pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PAPA141pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102349" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1278" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pa141_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_12dgr141_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PAPA160pp" metaid="R_PAPA160pp" name="Phosphatidate phosphatase (periplasmic, n-C16:0)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PAPA160pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PAPA160pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.4" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102350" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1278" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pa160_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_12dgr160_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PAPA161pp" metaid="R_PAPA161pp" name="Phosphatidate phosphatase (periplasmic, n-C16:1)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PAPA161pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PAPA161pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102353" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1278" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pa161_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_12dgr161_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PAPA180pp" metaid="R_PAPA180pp" name="Phosphatidate phosphatase (periplasmic, n-C18:0)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PAPA180pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PAPA180pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102354" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1278" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pa180_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_12dgr180_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_HPYRI" metaid="R_HPYRI" name="Hydroxypyruvate isomerase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_HPYRI">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/HPYRI" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-305" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/5.3.1.22" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01394" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100692" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11952" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11953" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11954" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/11955" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0508" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_hpyr_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2h3oppan_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FE3HOXUtex" metaid="R_FE3HOXUtex" name="Fe(III)hydroxamate unloaded secretion"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FE3HOXUtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FE3HOXUtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99517" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fe3hox_un_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fe3hox_un_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_TPRDCOAS" metaid="R_TPRDCOAS" name="Triphosphoribosyl-dephospho-CoA synthase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_TPRDCOAS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/TPRDCOAS" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:2.7.8.25-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.4.2.52" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R09675" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104920" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15117" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15118" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15119" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15120" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0613" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dpcoa_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2tpr3dpcoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ade_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ACGAM1PPpp" metaid="R_ACGAM1PPpp" name="N-acetyl-D-glucosamine 1-phosphatase (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ACGAM1PPpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ACGAM1PPpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.10" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95245" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_acgam1p_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_acgam_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_dgmp_e" metaid="R_EX_dgmp_e" name="DGMP exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_dgmp_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/dgmp" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dgmp_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GAMptspp" metaid="R_GAMptspp" name="D-glucosamine transport via PEP:Pyr PTS (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GAMptspp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GAMptspp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100034" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b1817" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2416" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2415" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1819" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1818" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gam_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pep_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gam6p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pyr_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GSNt2pp" metaid="R_GSNt2pp" name="Guanosine transport in via proton symport (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GSNt2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GSNt2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100434" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2964" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gsn_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gsn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_4hoxpacd_e" metaid="R_EX_4hoxpacd_e" name="4-Hydroxyphenylacetaldehyde exchange"
-      reversible="false" sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_4hoxpacd_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/4hoxpacd" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_4hoxpacd_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_GSNtex" metaid="R_GSNtex"
-      name="Guanosine transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GSNtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GSNtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100433" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gsn_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gsn_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_FORtex" metaid="R_FORtex"
-      name="Formate transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FORtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FORtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-1" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99620" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29679" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29680" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29681" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29682" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_for_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_for_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_D_LACt2pp" metaid="R_D_LACt2pp"
-      name="D-lactate transport via proton symport (periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_D_LACt2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/D_LACt2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-515" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97838" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b3603" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2975" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_lac__D_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_lac__D_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_RIBtex" metaid="R_RIBtex"
-      name="Ribose transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_RIBtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/RIBtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104036" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_rib__D_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_rib__D_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FLVRx" metaid="R_FLVRx" name="Flavin reductase (NAD)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FLVRx">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FLVRx" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.5.1.36" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.5.1.41" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R09750" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99602" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/31455" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/31456" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/31457" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/31458" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3844" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadh_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ribflv_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nad_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_rbflvrd_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_THMtex" metaid="R_THMtex"
-      name="Thiamine transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_THMtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/THMtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104831" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34919" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34920" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34921" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34922" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_thm_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_thm_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_XYLUtex" metaid="R_XYLUtex"
-      name="L-xylulose transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_XYLUtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/XYLUtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105267" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_xylu__L_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_xylu__L_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_manglyc_e" metaid="R_EX_manglyc_e" name="2(alpha-D-Mannosyl)-D-glycerate exchange"
-      reversible="false" sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_manglyc_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/manglyc" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_manglyc_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ALLtex" metaid="R_ALLtex"
-      name="Allose transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ALLtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ALLtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95776" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_all__D_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_all__D_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GGPTRCO" metaid="R_GGPTRCO" name="Gamma glutamyl putrescine oxidase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GGPTRCO">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GGPTRCO" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100131" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1301" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ggptrc_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_o2_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ggbutal_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nh4_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_metsox_R__L_e" metaid="R_EX_metsox_R__L_e" name="L-methionine-R-sulfoxide exchange"
-      reversible="false" sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_metsox_R__L_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/metsox_R__L" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_metsox_R__L_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_34dhpactex" metaid="R_34dhpactex"
-      name="Dihydroxyphenylacetaldehyde transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_34dhpactex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/34dhpactex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94848" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_34dhpac_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_34dhpac_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MALTHXtexi" metaid="R_MALTHXtexi"
-      name="Maltohexaose transport via diffusion (extracellular to periplasm) irreversible" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MALTHXtexi">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MALTHXtexi" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101354" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4036" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_malthx_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_malthx_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_12PPDStpp" metaid="R_12PPDStpp"
-      name="(S)-Propane-1,2-diol facilitated transport (periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_12PPDStpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/12PPDStpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94684" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_12ppd__S_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_12ppd__S_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_HYD1pp" metaid="R_HYD1pp" name="Hydrogenase (ubiquinone-8: 2 protons) (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_HYD1pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/HYD1pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100753" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29059#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29060#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29061#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29062#1" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b2996" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2994" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2997" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2995" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b0974" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0973" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0972" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b2721" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2724" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2722" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2723" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2720" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2719" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_q8_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_q8h2_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_EX_cl_e" metaid="R_EX_cl_e" name="Chloride exchange" reversible="true"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_cl_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/cl" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cl_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FE3DHBZStonex" metaid="R_FE3DHBZStonex"
-      name="Ferric 2,3-dihydroxybenzoylserine transport via ton system (extracellular)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FE3DHBZStonex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FE3DHBZStonex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99512" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b3006" />
-              <fbc:geneProductRef fbc:geneProduct="G_b1252" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3005" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0805" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b3006" />
-              <fbc:geneProductRef fbc:geneProduct="G_b1252" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3005" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2155" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fe3dhbzs_e" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fe3dhbzs_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_AACTOOR" metaid="R_AACTOOR"
-      name="Aminoacetone:oxygen oxidoreductase(deaminating)(flavin-containing)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_AACTOOR">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/AACTOOR" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:AMACETOXID-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.4.3.21" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.4.3.4" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.4.3.6" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02529" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95149" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28186" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28187" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28188" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28189" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_aact_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_o2_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_mthgxl_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nh4_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_H2tpp" metaid="R_H2tpp" name="Hydrogen transport diffusion (periplasm)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_H2tpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/H2tpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100495" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_s0001" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_23DAPPAtex" metaid="R_23DAPPAtex" name="2,3-diaminopropionate transport via diffusion"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_23DAPPAtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/23DAPPAtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94728" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_23dappa_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_23dappa_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ECAP3pp" metaid="R_ECAP3pp" name="Enterobacterial common antigen polymerase (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ECAP3pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ECAP3pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97876" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b3785" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3793" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_eca3und_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_unagamuf_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_eca4und_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_udcpdp_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FEOXAMtonex" metaid="R_FEOXAMtonex"
-      name="Ferroxamine transport via ton system (extracellular)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FEOXAMtonex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FEOXAMtonex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99558" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b0150" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3006" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1252" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3005" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_feoxam_e" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_feoxam_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FMNRx" metaid="R_FMNRx" name="FMN reductase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FMNRx">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FMNRx" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-9510" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.5.1.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.5.1.36" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.5.1.39" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.5.1.41" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.5.1.42" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R05705" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99607" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21620" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21621" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21622" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21623" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0937" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3844" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fmn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadh_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fmnh2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nad_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_3hpppn_e" metaid="R_EX_3hpppn_e" name="3-(3-hydroxy-phenyl)propionate exchange"
-      reversible="false" sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_3hpppn_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/3hpppn" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3hpppn_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_man6p_e" metaid="R_EX_man6p_e" name="D-Mannose 6-phosphate exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_man6p_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/man6p" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_man6p_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_tsul_e" metaid="R_EX_tsul_e" name="Thiosulfate exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_tsul_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/tsul" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_tsul_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_PHEt2rpp" metaid="R_PHEt2rpp"
-      name="L-phenylalanine reversible transport via proton symport (periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PHEt2rpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PHEt2rpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-56" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102635" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28923" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28924" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28925" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28926" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0576" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0112" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_phe__L_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_phe__L_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DHBS" metaid="R_DHBS" name="2,3-dihydroxybenzoate adenylate synthase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DHBS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DHBS" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DHBAMPLIG-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.7.58" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01504" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97369" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20229" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20230" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20231" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/20232" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0594" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_23dhb_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_23dhba_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_n2o_e" metaid="R_EX_n2o_e" name="Nitrous oxide exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_n2o_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/n2o" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_n2o_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MDDCP1pp" metaid="R_MDDCP1pp" name="Murein D,D-carboxypeptidase (murein5px4p) (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MDDCP1pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MDDCP1pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.4.16.4" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101429" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0376" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0839" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0632" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3182" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2010" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2430" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_murein5px4p_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ala__D_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_murein4px4p_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_GUI2" metaid="R_GUI2" name="Glucuronate isomerase (D-galacturonate)" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GUI2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GUI2" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/5.3.1.12" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01983" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100469" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3092" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_galur_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_tagur_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_OMBZLM" metaid="R_OMBZLM" name="2-Octaprenyl-6-methoxy-benzoquinol methylase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_OMBZLM">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/OMBZLM" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102178" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3833" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2ombzl_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_amet_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2ommbl_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ahcys_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_maltttr_e" metaid="R_EX_maltttr_e" name="Maltotetraose exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_maltttr_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/maltttr" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_maltttr_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GLYCK" metaid="R_GLYCK" name="Glycerate kinase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLYCK">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLYCK" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLY3KIN-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.1.31" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01514" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100328" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23516" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23517" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23518" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23519" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0514" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glyc__R_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3pg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MLTG5" metaid="R_MLTG5" name="Maltodextrin glucosidase (maltoheptaose)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MLTG5">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MLTG5" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-14283" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.2.1.20" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101623" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0403" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_malthp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glc__D_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_malthx_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GPDDA3" metaid="R_GPDDA3"
-      name="Glycerophosphodiester phosphodiesterase (Glycerophosphoserine)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GPDDA3">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GPDDA3" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-14136" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.4.46" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100412" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29875" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29876" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29877" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29878" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3449" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_g3ps_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glyc3p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ser__L_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_2DOXG6PP" metaid="R_2DOXG6PP" name="2 deoxyglucose 6 phosphatase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_2DOXG6PP">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/2DOXG6PP" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.68" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02587" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94794" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22236" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22237" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22238" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22239" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2293" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3826" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1727" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0446" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2doxg6p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2dglc_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_OXAMTC" metaid="R_OXAMTC" name="Oxamate transcarbamoylase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_OXAMTC">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/OXAMTC" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:OXAMATE-CARBAMOYLTRANSFERASE-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.1.3.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02937" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102236" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22984" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22985" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22986" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22987" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_oxur_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pi_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cbp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_oxam_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_UDCPPtppi" metaid="R_UDCPPtppi"
-      name="Undecaprenyl phosphate transport (cytoplasm to periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_UDCPPtppi">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/UDCPPtppi" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105045" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_udcpp_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_udcpp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_AGMH" metaid="R_AGMH"
-      name="N-Acetyl-D-glucosamine(anhydrous)N-Acetylmuramyl beta -1,4-N-acetylglucosaminidase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_AGMH">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/AGMH" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95550" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1107" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_anhgm_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_acgam_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_anhm_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MPTG" metaid="R_MPTG" name="Murein polymerizing transglycosylase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MPTG">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MPTG" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101731" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b1069" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2519" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0089" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b0089" />
-              <fbc:geneProductRef fbc:geneProduct="G_b1069" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3208" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b1069" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3396" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0089" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b1069" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0149" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0089" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_uaagmda_c" stoichiometry="2" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_murein5p5p_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_udcpdp_c" stoichiometry="2" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MPTG2" metaid="R_MPTG2" name="Murein polymerizing transglycosylase 2 (three linked units)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MPTG2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MPTG2" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101732" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b1069" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3396" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0089" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b1069" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0149" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0089" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b0089" />
-              <fbc:geneProductRef fbc:geneProduct="G_b1069" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3208" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b1069" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2519" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0089" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_murein5p5p_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_uaagmda_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_murein5p5p5p_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_udcpdp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MCTP1App" metaid="R_MCTP1App"
-      name="Murein crosslinking transpeptidase 1A:(A2pm-&gt;D-ala) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MCTP1App">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MCTP1App" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101426" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b0084" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0635" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3396" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b0084" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0635" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0149" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_murein5p5p_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ala__D_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_murein5px4p_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MCTP2App" metaid="R_MCTP2App"
-      name="Murein crosslinking transpeptidase 1A:(A2pm-&gt;D-ala) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MCTP2App">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MCTP2App" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101428" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b0084" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0635" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3396" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b0084" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0635" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0149" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_murein5p5p5p_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ala__D_p" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_murein5px4px4p_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MCTP1Bpp" metaid="R_MCTP1Bpp"
-      name="Murein crosslinking transpeptidase 1B:(A2pm-&gt;A2pm) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MCTP1Bpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MCTP1Bpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101427" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1678" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0925" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_murein5p5p_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_alaala_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_murein5px3p_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MELIBt3ipp" metaid="R_MELIBt3ipp" name="Melibiose transport in via antiport (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MELIBt3ipp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MELIBt3ipp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101461" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1528" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_melib_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_melib_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_lipoate_e" metaid="R_EX_lipoate_e" name="Lipoate exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_lipoate_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/lipoate" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_lipoate_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_pydx_e" metaid="R_EX_pydx_e" name="Pyridoxal exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_pydx_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/pydx" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pydx_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_g1p_e" metaid="R_EX_g1p_e" name="D-Glucose 1-phosphate exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_g1p_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/g1p" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_g1p_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_GLCtex_copy2" metaid="R_GLCtex_copy2" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLCtex_copy2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-574" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100188" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or>
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glc__D_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glc__D_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NAt3pp" metaid="R_NAt3pp"
-      name="Sodium transport out via proton antiport (cytoplasm to periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NAt3pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NAt3pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-101" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101803" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29419" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29420" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29421" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29422" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0842" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1216" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_na1_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_na1_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_SFGTHi" metaid="R_SFGTHi" name="S-Formylglutathione hydralase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_SFGTHi">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/SFGTHi" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:S-FORMYLGLUTATHIONE-HYDROLASE-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.2.12" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00527" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104357" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14961" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14962" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14963" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/14964" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2154" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0355" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_Sfglutth_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_for_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gthrd_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DHORDfum" metaid="R_DHORDfum" name="Fumarate dependent DHORD" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DHORDfum">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DHORDfum" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-9929" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.3.98.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01867" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97425" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30059" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30060" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30061" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30062" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dhor__S_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fum_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_orot_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_succ_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_K2L4Aabcpp" metaid="R_K2L4Aabcpp"
-      name="KDO(2)-lipid IV A transport via ABC system (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_K2L4Aabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/K2L4Aabcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100899" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35247#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35248#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35249#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35250#1" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0914" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_kdo2lipid4_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_kdo2lipid4_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DSBCGT" metaid="R_DSBCGT" name="DsbC:glutathione thiotransferase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DSBCGT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DSBCGT" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97793" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2893" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dsbcox_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gthrd_p" stoichiometry="2" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dsbcrd_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gthox_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DSBGGT" metaid="R_DSBGGT" name="DsbG:glutathione thiotransferase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DSBGGT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DSBGGT" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97795" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0604" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dsbgox_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gthrd_p" stoichiometry="2" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dsbgrd_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gthox_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DHNAOT4" metaid="R_DHNAOT4" name="1,4-dihydroxy-2-naphthoate octaprenyltransferase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DHNAOT4">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DHNAOT4" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:DMK-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.5.1.74" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97408" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30099" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30100" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30101" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30102" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3930" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dhna_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_octdp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2dmmql8_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_AMPMS2" metaid="R_AMPMS2" name="4-amino-2-methyl-5-phosphomethylpyrimidine synthetase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_AMPMS2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/AMPMS2" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95826" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3994" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_air_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nad_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_4ampm_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_for_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="3" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadh_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DM_oxam_c" metaid="R_DM_oxam_c" name="Sink needed to allow oxamate to leave system"
-      reversible="false" sboTerm="SBO:0000628">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DM_oxam_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/oxam" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_oxam_c" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_THIORDXi" metaid="R_THIORDXi" name="Hydrogen peroxide reductase (thioredoxin)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_THIORDXi">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/THIORDXi" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-267" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.11.1.16" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104815" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1710" />
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b3781" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2480" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b2582" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2480" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_trdrd_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_trdox_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PPPGO3" metaid="R_PPPGO3" name="Protoporphyrinogen oxidase (anaerobic)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PPPGO3">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PPPGO3" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.3.3.4" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103130" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3850" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fum_c" stoichiometry="3" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pppg9_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppp9_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_succ_c" stoichiometry="3" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PDX5POi" metaid="R_PDX5POi" name="Pyridoxine 5'-phosphate oxidase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PDX5POi">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PDX5POi" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PNPOXI-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.4.3.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00278" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102438" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15149" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15150" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15151" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15152" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1638" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_o2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pdx5p_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pydx5p_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PDX5PO2" metaid="R_PDX5PO2" name="Pyridoxine 5'-phosphate oxidase (anaerboic"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PDX5PO2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PDX5PO2" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102437" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nad_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pdx5p_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadh_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pydx5p_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PLIPA1A181pp" metaid="R_PLIPA1A181pp"
-      name="Phospholipase A1 (phosphatidate, n-C18:1) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PLIPA1A181pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PLIPA1A181pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102973" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3821" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pa181_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2odec11eg3p_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ocdcea_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LPLIPAL2A141" metaid="R_LPLIPAL2A141"
-      name="Lysophospholipase L2 (2-acylglycerophosphotidate, n-C14:1)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LPLIPAL2A141">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LPLIPAL2A141" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.1.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101164" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3825" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2tdec7eg3p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glyc3p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ttdcea_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_HG2t3pp" metaid="R_HG2t3pp"
-      name="Mercury (Hg+2) transport out via proton antiport (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_HG2t3pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/HG2t3pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100624" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3915" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_hg2_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_hg2_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CYTBO3_4pp" metaid="R_CYTBO3_4pp"
-      name="Cytochrome oxidase bo3 (ubiquinol-8: 4 protons) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CYTBO3_4pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CYTBO3_4pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97036" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b0429" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0432" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0431" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0430" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="4" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_o2_c" stoichiometry="0.5" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_q8h2_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="4" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_q8_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EAR141x" metaid="R_EAR141x" name="Enoyl-[acyl-carrier-protein] reductase (NADH) (n-C14:1)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EAR141x">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/EAR141x" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.3.1.9" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97853" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1288" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadh_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_t3c7mrseACP_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nad_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_tdeACP_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EAR181x" metaid="R_EAR181x" name="Enoyl-[acyl-carrier-protein] reductase (NADH) (n-C18:1)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EAR181x">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/EAR181x" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.3.1.9" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97861" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1288" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadh_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_t3c11vaceACP_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nad_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_octeACP_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EAR181y" metaid="R_EAR181y" name="Enoyl-[acyl-carrier-protein] reductase (NADPH) (n-C18:1)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EAR181y">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/EAR181y" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.3.1.10" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97862" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1288" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_t3c11vaceACP_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_octeACP_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_G3PAT141" metaid="R_G3PAT141" name="Glycerol-3-phosphate acyltransferase (C14:1)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_G3PAT141">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/G3PAT141" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.15" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99856" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b1094" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4041" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glyc3p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_tdeACP_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_1tdec7eg3p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ACP_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_G3PAT181" metaid="R_G3PAT181" name="Glycerol-3-phosphate acyltransferase (C18:1)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_G3PAT181">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/G3PAT181" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.15" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99862" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b1094" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4041" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glyc3p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_octeACP_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_1odec11eg3p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ACP_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DASYN140" metaid="R_DASYN140" name="CDP-diacylglycerol synthetase (n-C14:0)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DASYN140">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DASYN140" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.7.41" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97155" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0175" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ctp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pa140_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cdpdtdecg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DASYN180" metaid="R_DASYN180" name="CDP-diacylglycerol synthetase (n-C18:0)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DASYN180">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DASYN180" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.7.41" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97160" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0175" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ctp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pa180_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cdpdodecg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DASYN141" metaid="R_DASYN141" name="CDP-diacylglycerol synthetase (n-C14:1)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DASYN141">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DASYN141" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.7.41" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97156" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0175" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ctp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pa141_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cdpdtdec7eg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CDAPPA160" metaid="R_CDAPPA160" name="CDP-Diacylglycerol pyrophostatase (n-C16:0)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CDAPPA160">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CDAPPA160" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.26" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96503" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3918" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cdpdhdecg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cmp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pa160_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CDAPPA141" metaid="R_CDAPPA141" name="CDP-Diacylglycerol pyrophostatase (n-C14:1)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CDAPPA141">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CDAPPA141" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.26" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96502" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3918" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cdpdtdec7eg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cmp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pa141_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PGSA141" metaid="R_PGSA141" name="Phosphatidylglycerol synthase (n-C14:1)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PGSA141">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PGSA141" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102591" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1912" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cdpdtdec7eg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glyc3p_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cmp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pgp141_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_alaala_e" metaid="R_EX_alaala_e" name="D-Alanyl-D-alanine exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_alaala_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/alaala" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_alaala_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_dtmp_e" metaid="R_EX_dtmp_e" name="DTMP exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_dtmp_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/dtmp" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dtmp_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_5DOAN" metaid="R_5DOAN" name="5'-deoxyadenosine nuclosidase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_5DOAN">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/5DOAN" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-6550" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95069" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29859" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29860" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29861" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29862" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0159" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dad_5_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_5drib_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ade_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DM_5drib_c" metaid="R_DM_5drib_c"
-      name="Sink needed to allow 5'-deoxyribose to leave system" reversible="false" sboTerm="SBO:0000628">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DM_5drib_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/5drib" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_5drib_c" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MINOHPtexi" metaid="R_MINOHPtexi"
-      name="Myo-inositol phosphate transport via diffusion (extracellular to periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MINOHPtexi">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MINOHPtexi" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101585" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_minohp_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_minohp_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_12PPDRtpp" metaid="R_12PPDRtpp"
-      name="(R)-Propane-1,2-diol facilitated transport (periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_12PPDRtpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/12PPDRtpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-467" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94683" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_12ppd__R_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_12ppd__R_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FACOAE120" metaid="R_FACOAE120" name="Fatty-acid-CoA thioesterase (dodecanoate)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FACOAE120">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FACOAE120" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.2.2" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99128" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0452" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ddcacoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_coa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ddca_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_3OAR120" metaid="R_3OAR120" name="3-oxoacyl-[acyl-carrier-protein] reductase (n-C12:0)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_3OAR120">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/3OAR120" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.100" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.85" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.86" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R04964" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94942" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1093" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3oddecACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3hddecACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_3HAD80" metaid="R_3HAD80" name="3-hydroxyacyl-[acyl-carrier-protein] dehydratase (n-C8:0)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_3HAD80">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/3HAD80" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:4.2.1.59-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.85" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.86" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.58" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.59" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.61" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R04537" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94888" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0954" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0180" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3hoctACP_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_toct2eACP_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_3HAD120" metaid="R_3HAD120"
-      name="3-hydroxyacyl-[acyl-carrier-protein] dehydratase (n-C12:0)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_3HAD120">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/3HAD120" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.85" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.86" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.58" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.59" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.60" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.61" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R04965" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94877" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0180" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0954" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3hddecACP_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_tddec2eACP_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EAR180x" metaid="R_EAR180x" name="Enoyl-[acyl-carrier-protein] reductase (NADH) (n-C18:0)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EAR180x">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/EAR180x" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.3.1.9" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97859" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1288" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadh_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_toctd2eACP_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nad_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ocdcaACP_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_SO4t2pp" metaid="R_SO4t2pp"
-      name="Sulfate transport in via proton symport (periplasm to cytoplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_SO4t2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/SO4t2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104466" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28574" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28575" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28576" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28577" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2413" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_so4_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_so4_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EAR180y" metaid="R_EAR180y" name="Enoyl-[acyl-carrier-protein] reductase (NADPH) (n-C18:0)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EAR180y">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/EAR180y" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.3.1.10" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97860" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1288" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_toctd2eACP_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ocdcaACP_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_AGPAT120" metaid="R_AGPAT120"
-      name="1-tetradecanoyl-sn-glycerol 3-phosphate O-acyltransferase (n-C12:0)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_AGPAT120">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/AGPAT120" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.51" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95558" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3018" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_1ddecg3p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ddcaACP_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pa120_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PGPP120" metaid="R_PGPP120" name="Phosphatidylglycerol phosphate phosphatase (n-C14:0)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PGPP120">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PGPP120" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.27" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102560" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0418" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1278" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pgp120_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pg120_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DAGK120" metaid="R_DAGK120" name="Diacylglycerol kinase (n-C12:0)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DAGK120">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DAGK120" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97091" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4042" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_12dgr120_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pa120_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PSSA180" metaid="R_PSSA180" name="Phosphatidylserine syntase (n-C18:0)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PSSA180">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PSSA180" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.8.8" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103271" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2585" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cdpdodecg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ser__L_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cmp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ps180_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PSSA161" metaid="R_PSSA161" name="Phosphatidylserine syntase (n-C16:1)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PSSA161">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PSSA161" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.8.8" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103270" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2585" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cdpdhdec9eg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ser__L_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cmp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ps161_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PSSA141" metaid="R_PSSA141" name="Phosphatidylserine syntase (n-C14:1)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PSSA141">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PSSA141" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103268" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2585" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cdpdtdec7eg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ser__L_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cmp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ps141_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PSD160" metaid="R_PSD160" name="Phosphatidylserine decarboxylase (n-C16:0)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PSD160">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PSD160" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.1.1.65" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103232" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4160" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ps160_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pe160_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PSD161" metaid="R_PSD161" name="Phosphatidylserine decarboxylase (n-C16:1)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PSD161">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PSD161" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.1.1.65" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103233" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4160" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ps161_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pe161_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PSD180" metaid="R_PSD180" name="Phosphatidylserine decarboxylase (n-C18:0)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PSD180">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PSD180" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.1.1.65" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103234" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4160" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ps180_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pe180_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_COLIPAabcpp" metaid="R_COLIPAabcpp"
-      name="Core oligosaccharide lipid A transport via ABC system (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_COLIPAabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/COLIPAabcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96844" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0914" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_colipa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_colipa_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PLIPA2A140pp" metaid="R_PLIPA2A140pp"
-      name="Phospholipase A2 (phosphatidate, n-C14:0) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PLIPA2A140pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PLIPA2A140pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.1.4" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102990" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3821" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pa140_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_1tdecg3p_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ttdca_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PLIPA2A141pp" metaid="R_PLIPA2A141pp"
-      name="Phospholipase A2 (phosphatidate, n-C14:1) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PLIPA2A141pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PLIPA2A141pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.1.4" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102991" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3821" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pa141_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_1tdec7eg3p_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ttdcea_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PLIPA2A180pp" metaid="R_PLIPA2A180pp"
-      name="Phospholipase A2 (phosphatidate, n-C18:0) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PLIPA2A180pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PLIPA2A180pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.1.4" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102994" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3821" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pa180_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_1odecg3p_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ocdca_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GAM6Pt6_2pp" metaid="R_GAM6Pt6_2pp"
-      name="D-Glucosamine 6-phosphate transport via phosphate antiport (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GAM6Pt6_2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GAM6Pt6_2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100032" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3666" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gam6p_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pi_c" stoichiometry="2" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gam6p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_p" stoichiometry="2" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_PPALtex" metaid="R_PPALtex"
-      name="Propanal transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PPALtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PPALtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103071" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ppal_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppal_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_CA2tex" metaid="R_CA2tex"
-      name="Calcium (Ca+2) transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CA2tex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CA2tex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-144" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-497" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.8" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96436" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29671" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29672" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29673" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29674" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ca2_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ca2_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_CUtex" metaid="R_CUtex"
-      name="Copper (Cu+1) transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CUtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CUtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96954" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cu_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cu_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CU1Opp" metaid="R_CU1Opp" name="Cuprous Oxidase (Cu+1)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CU1Opp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CU1Opp" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.16.3.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96948" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30083" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30084" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30085" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30086" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0123" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cu_p" stoichiometry="4" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="4" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_o2_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cu2_p" stoichiometry="4" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_p" stoichiometry="2" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_SUCDi" metaid="R_SUCDi" name="Succinate dehydrogenase (irreversible)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_SUCDi">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/SUCDi" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99641" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29187" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29188" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29189" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29190" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b0723" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0721" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0722" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0724" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_q8_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_succ_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fum_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_q8h2_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LPLIPAL1E141pp" metaid="R_LPLIPAL1E141pp"
-      name="Lysophospholipase L1 (2-acylglycerophosphoethanolamine, n-C14:1) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LPLIPAL1E141pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LPLIPAL1E141pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101150" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0494" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_1agpe141_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g3pe_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ttdcea_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LALDO2x" metaid="R_LALDO2x" name="D-Lactaldehyde:NAD+ 1-oxidoreductase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LALDO2x">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LALDO2x" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D-LACTALDEHYDE-DEHYDROGENASE-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.78" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.79" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02527" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101008" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24528" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24529" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24530" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24531" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3945" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mthgxl_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadh_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_lald__D_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nad_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_12PPDRtex" metaid="R_12PPDRtex"
-      name="(R)-Propane-1,2-diol transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_12PPDRtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/12PPDRtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-467" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94683" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_12ppd__R_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_12ppd__R_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LPLIPAL1E160pp" metaid="R_LPLIPAL1E160pp"
-      name="Lysophospholipase L1 (2-acylglycerophosphoethanolamine, n-C16:0) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LPLIPAL1E160pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LPLIPAL1E160pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101151" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/40891" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/40892" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/40893" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/40894" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0494" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_1agpe160_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g3pe_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_hdca_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LPLIPAL1E180pp" metaid="R_LPLIPAL1E180pp"
-      name="Lysophospholipase L1 (2-acylglycerophosphoethanolamine, n-C18:0) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LPLIPAL1E180pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LPLIPAL1E180pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101153" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0494" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_1agpe180_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g3pe_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ocdca_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LPLIPAL1E181pp" metaid="R_LPLIPAL1E181pp"
-      name="Lysophospholipase L1 (2-acylglycerophosphoethanolamine, n-C18:1) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LPLIPAL1E181pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LPLIPAL1E181pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101154" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0494" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_1agpe181_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g3pe_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ocdcea_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LPLIPAL1G160pp" metaid="R_LPLIPAL1G160pp"
-      name="Lysophospholipase L1 (2-acylglycerophosphoglycerol, n-C16:0) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LPLIPAL1G160pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LPLIPAL1G160pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101158" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0494" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_1agpg160_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g3pg_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_hdca_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LPLIPAL1G161pp" metaid="R_LPLIPAL1G161pp"
-      name="Lysophospholipase L1 (2-acylglycerophosphoglycerol, n-C16:1) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LPLIPAL1G161pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LPLIPAL1G161pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101159" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0494" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_1agpg161_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g3pg_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_hdcea_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LPLIPAL1G120pp" metaid="R_LPLIPAL1G120pp"
-      name="Lysophospholipase L1 (2-acylglycerophosphoglycerol, n-C12:0) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LPLIPAL1G120pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LPLIPAL1G120pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101155" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0494" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_1agpg120_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ddca_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g3pg_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PLIPA2E140pp" metaid="R_PLIPA2E140pp"
-      name="Phospholipase A2 (phosphatidylethanolamine, n-C14:0) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PLIPA2E140pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PLIPA2E140pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102997" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3821" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pe140_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_1agpe140_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ttdca_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PLIPA2E160pp" metaid="R_PLIPA2E160pp"
-      name="Phospholipase A2 (phosphatidylethanolamine, n-C16:0) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PLIPA2E160pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PLIPA2E160pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102999" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3821" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pe160_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_1agpe160_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_hdca_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PLIPA2A161pp" metaid="R_PLIPA2A161pp"
-      name="Phospholipase A2 (phosphatidate, n-C16:1) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PLIPA2A161pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PLIPA2A161pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102993" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3821" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pa161_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_1hdec9eg3p_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_hdcea_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PLIPA2A181pp" metaid="R_PLIPA2A181pp"
-      name="Phospholipase A2 (phosphatidate, n-C18:1) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PLIPA2A181pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PLIPA2A181pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102995" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3821" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pa181_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_1odec11eg3p_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ocdcea_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_F6Ptex" metaid="R_F6Ptex"
-      name="Fructose 6-phosphate transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_F6Ptex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/F6Ptex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99076" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_f6p_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_f6p_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_GAMAN6Ptex" metaid="R_GAMAN6Ptex"
-      name="D-glucosamine 6-phosphate transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GAMAN6Ptex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GAMAN6Ptex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100031" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gam6p_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gam6p_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ALR4x" metaid="R_ALR4x" name="Aldose reductase (acetol)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ALR4x">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ALR4x" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95790" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3945" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_acetol_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadh_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_12ppd__R_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nad_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LPLIPAL1G141pp" metaid="R_LPLIPAL1G141pp"
-      name="Lysophospholipase L1 (2-acylglycerophosphoglycerol, n-C14:1) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LPLIPAL1G141pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LPLIPAL1G141pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101157" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0494" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_1agpg141_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g3pg_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ttdcea_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LPLIPAL1G180pp" metaid="R_LPLIPAL1G180pp"
-      name="Lysophospholipase L1 (2-acylglycerophosphoglycerol, n-C18:0) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LPLIPAL1G180pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LPLIPAL1G180pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101160" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0494" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_1agpg180_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g3pg_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ocdca_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LPLIPAL1G181pp" metaid="R_LPLIPAL1G181pp"
-      name="Lysophospholipase L1 (2-acylglycerophosphoglycerol, n-C18:1) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LPLIPAL1G181pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LPLIPAL1G181pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101161" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0494" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_1agpg181_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g3pg_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ocdcea_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ACONIs" metaid="R_ACONIs" name="Aconitate isomerase (spontaneous)" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ACONIs">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ACONIs" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ACONITATE-DELTA-ISOMERASE-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/5.3.3.7" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02244" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95382" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17265" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17266" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17267" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17268" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_s0001" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_acon_T_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_acon_C_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ACONTb" metaid="R_ACONTb" name="Aconitase (half-reaction B, Isocitrate hydro-lyase)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ACONTb">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ACONTb" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.3" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01900" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95387" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22144" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22145" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22146" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22147" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0118" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1276" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_acon_C_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_icit_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GLCP2" metaid="R_GLCP2" name="Glycogen phosphorylase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLCP2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLCP2" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.4.1.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100215" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b3417" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3428" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_bglycogen_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pi_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g1p_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_F6Pt6_2pp" metaid="R_F6Pt6_2pp"
-      name="Fructose-6-phosphate transport via phosphate antiport (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_F6Pt6_2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/F6Pt6_2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99079" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3666" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_f6p_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pi_c" stoichiometry="2" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_f6p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_p" stoichiometry="2" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_PPALtpp" metaid="R_PPALtpp" name="Propanal transport via channel (periplasm)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PPALtpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PPALtpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103071" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ppal_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppal_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PLIPA2E141pp" metaid="R_PLIPA2E141pp"
-      name="Phospholipase A2 (phosphatidylethanolamine, n-C14:1) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PLIPA2E141pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PLIPA2E141pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102998" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3821" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pe141_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_1agpe141_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ttdcea_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PLIPA2E181pp" metaid="R_PLIPA2E181pp"
-      name="Phospholipase A2 (phosphatidylethanolamine, n-C18:1) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PLIPA2E181pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PLIPA2E181pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103002" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3821" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pe181_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_1agpe181_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ocdcea_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PLIPA2G140pp" metaid="R_PLIPA2G140pp"
-      name="Phospholipase A2 (phosphatidylglycerol, n-C14:0) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PLIPA2G140pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PLIPA2G140pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103004" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3821" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pg140_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_1agpg140_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ttdca_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_3HAD161" metaid="R_3HAD161"
-      name="3-hydroxyacyl-[acyl-carrier-protein] dehydratase (n-C16:1)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_3HAD161">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/3HAD161" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.61" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94882" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0954" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0180" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3hcpalm9eACP_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_t3c9palmeACP_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PLIPA2G160pp" metaid="R_PLIPA2G160pp"
-      name="Phospholipase A2 (phosphatidylglycerol, n-C16:0) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PLIPA2G160pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PLIPA2G160pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103006" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3821" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pg160_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_1agpg160_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_hdca_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PLIPA2G181pp" metaid="R_PLIPA2G181pp"
-      name="Phospholipase A2 (phosphatidylglycerol, n-C18:1) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PLIPA2G181pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PLIPA2G181pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103009" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3821" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pg181_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_1agpg181_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ocdcea_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ASNS1" metaid="R_ASNS1" name="Asparagine synthase (glutamine-hydrolysing)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ASNS1">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ASNS1" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ASNSYNB-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/6.3.5.4" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00578" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96059" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12228" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12229" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12230" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12231" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0674" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_asp__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gln__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_amp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_asn__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glu__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EAR80y" metaid="R_EAR80y" name="Enoyl-[acyl-carrier-protein] reductase (NADPH) (n-C8:0)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EAR80y">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/EAR80y" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.86" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97868" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1288" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_toct2eACP_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ocACP_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EAR120y" metaid="R_EAR120y" name="Enoyl-[acyl-carrier-protein] reductase (NADPH) (n-C12:0)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EAR120y">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/EAR120y" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.86" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97848" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1288" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_tddec2eACP_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ddcaACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_3OAR181" metaid="R_3OAR181" name="3-oxoacyl-[acyl-carrier-protein] reductase (n-C18:1)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_3OAR181">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/3OAR181" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.100" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94949" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1093" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3ocvac11eACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3hcvac11eACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_3HAD121" metaid="R_3HAD121"
-      name="3-hydroxyacyl-[acyl-carrier-protein] dehydratase (n-C12:1)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_3HAD121">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/3HAD121" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.61" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94878" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0954" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0180" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3hcddec5eACP_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_t3c5ddeceACP_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EAR121y" metaid="R_EAR121y" name="Enoyl-[acyl-carrier-protein] reductase (NADPH) (n-C12:1)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EAR121y">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/EAR121y" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.3.1.10" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97850" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1288" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_t3c5ddeceACP_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cddec5eACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GTHRDHpp" metaid="R_GTHRDHpp" name="Glutathione hydralase (periplasmic)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GTHRDHpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GTHRDHpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-12618" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-15856" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.4.19.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.4.19.13" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00494" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100136" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28807" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28808" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28809" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28810" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3447" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gthrd_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cgly_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glu__L_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_PROGLYtex" metaid="R_PROGLYtex"
-      name="L-Prolinylglycine transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PROGLYtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PROGLYtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103191" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_progly_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_progly_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_progly_e" metaid="R_EX_progly_e" name="L-Prolinylglycine exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_progly_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/progly" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_progly_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MDDCP2pp" metaid="R_MDDCP2pp"
-      name="Murein D,D-carboxypeptidase (murein5px4px4p) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MDDCP2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MDDCP2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.4.16.4" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101430" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2430" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0839" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0632" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3182" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2010" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0376" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_murein5px4px4p_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ala__D_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_murein4px4px4p_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MDDCP3pp" metaid="R_MDDCP3pp" name="Murein D,D-carboxypeptidase (murein5p5p) (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MDDCP3pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MDDCP3pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.4.16.4" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101431" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2430" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0839" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0632" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3182" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2010" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0376" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_murein5p5p_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ala__D_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_murein5p4p_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EAR140x" metaid="R_EAR140x" name="Enoyl-[acyl-carrier-protein] reductase (NADH) (n-C14:0)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EAR140x">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/EAR140x" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97851" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1288" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadh_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_tmrs2eACP_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_myrsACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nad_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EAR40y" metaid="R_EAR40y" name="Enoyl-[acyl-carrier-protein] reductase (NADPH) (n-C4:0)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EAR40y">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/EAR40y" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.86" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97864" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1288" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_but2eACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_butACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_3OAS181" metaid="R_3OAS181" name="3-oxoacyl-[acyl-carrier-protein] synthase (n-C18:1)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_3OAS181">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/3OAS181" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.179" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94962" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1095" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_hdeACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_malACP_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3ocvac11eACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EAR161y" metaid="R_EAR161y" name="Enoyl-[acyl-carrier-protein] reductase (NADPH) (n-C16:1)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EAR161y">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/EAR161y" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.3.1.10" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97858" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1288" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_t3c9palmeACP_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_hdeACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_G3PAT140" metaid="R_G3PAT140" name="Glycerol-3-phosphate acyltransferase (C14:0)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_G3PAT140">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/G3PAT140" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.15" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99855" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b1094" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4041" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glyc3p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_myrsACP_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_1tdecg3p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ACP_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_G3PAT160" metaid="R_G3PAT160" name="Glycerol-3-phosphate acyltransferase (C16:0)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_G3PAT160">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/G3PAT160" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.15" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99857" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b1094" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4041" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glyc3p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_palmACP_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_1hdecg3p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ACP_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_G3PAT161" metaid="R_G3PAT161" name="Glycerol-3-phosphate acyltransferase (C16:1)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_G3PAT161">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/G3PAT161" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.15" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99859" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b1094" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4041" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glyc3p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_hdeACP_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_1hdec9eg3p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ACP_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_AGPAT160" metaid="R_AGPAT160"
-      name="1-hexadecanoyl-sn-glycerol 3-phosphate O-acyltransferase (n-C16:0)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_AGPAT160">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/AGPAT160" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.51" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95561" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3018" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_1hdecg3p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_palmACP_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pa160_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CDAPPA140" metaid="R_CDAPPA140" name="CDP-Diacylglycerol pyrophostatase (n-C14:0)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CDAPPA140">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CDAPPA140" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.26" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96501" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3918" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cdpdtdecg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cmp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pa140_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MLDCP1App" metaid="R_MLDCP1App"
-      name="Murein L,D-carboxypeptidase (murein5px4p) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MLDCP1App">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MLDCP1App" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.4.17.13" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101611" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1678" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1990" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0925" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1113" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0819" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_murein5px4p_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_alaala_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_murein3px4p_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EAR160y" metaid="R_EAR160y" name="Enoyl-[acyl-carrier-protein] reductase (NADPH) (n-C16:0)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EAR160y">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/EAR160y" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.3.1.10" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97856" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1288" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_tpalm2eACP_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_palmACP_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EAR100y" metaid="R_EAR100y" name="Enoyl-[acyl-carrier-protein] reductase (NADPH) (n-C10:0)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EAR100y">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/EAR100y" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.86" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97846" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1288" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_tdec2eACP_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dcaACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_3OAR141" metaid="R_3OAR141" name="3-oxoacyl-[acyl-carrier-protein] reductase (n-C14:1)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_3OAR141">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/3OAR141" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.100" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94945" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1093" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3ocmrs7eACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3hcmrs7eACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_3OAR161" metaid="R_3OAR161" name="3-oxoacyl-[acyl-carrier-protein] reductase (n-C16:1)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_3OAR161">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/3OAR161" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.100" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94947" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1093" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3ocpalm9eACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3hcpalm9eACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_3HAD141" metaid="R_3HAD141"
-      name="3-hydroxyacyl-[acyl-carrier-protein] dehydratase (n-C14:1)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_3HAD141">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/3HAD141" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.61" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94880" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0954" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0180" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3hcmrs7eACP_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_t3c7mrseACP_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EAR121x" metaid="R_EAR121x" name="Enoyl-[acyl-carrier-protein] reductase (NADH) (n-C12:1)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EAR121x">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/EAR121x" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.3.1.9" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97849" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1288" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadh_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_t3c5ddeceACP_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cddec5eACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nad_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PSD140" metaid="R_PSD140" name="Phosphatidylserine decarboxylase (n-C14:0)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PSD140">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PSD140" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103230" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4160" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ps140_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pe140_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_MICITDr" metaid="R_MICITDr" name="2-methylisocitrate dehydratase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MICITDr">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MICITDr" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:4.2.1.99-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.99" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R04425" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101580" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17941" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17942" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17943" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17944" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0118" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2mcacn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_micit_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CDAPPA181" metaid="R_CDAPPA181" name="CDP-Diacylglycerol pyrophostatase (n-C18:1)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CDAPPA181">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CDAPPA181" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.26" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96507" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3918" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cdpdodec11eg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cmp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pa181_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PGSA140" metaid="R_PGSA140" name="Phosphatidylglycerol synthase (n-C14:0)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PGSA140">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PGSA140" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102590" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1912" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cdpdtdecg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glyc3p_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cmp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pgp140_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LPLIPAL1A141pp" metaid="R_LPLIPAL1A141pp"
-      name="Lysophospholipase L1 (2-acylglycerophosphotidate, n-C14:1) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LPLIPAL1A141pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LPLIPAL1A141pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.1.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101143" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0494" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_1tdec7eg3p_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glyc3p_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ttdcea_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LPLIPAL1A180pp" metaid="R_LPLIPAL1A180pp"
-      name="Lysophospholipase L1 (2-acylglycerophosphotidate, n-C18:0) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LPLIPAL1A180pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LPLIPAL1A180pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.1.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101146" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0494" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_1odecg3p_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glyc3p_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ocdca_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LPLIPAL1E140pp" metaid="R_LPLIPAL1E140pp"
-      name="Lysophospholipase L1 (2-acylglycerophosphoethanolamine, n-C14:0) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LPLIPAL1E140pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LPLIPAL1E140pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101149" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0494" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_1agpe140_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g3pe_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ttdca_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LPLIPAL1E161pp" metaid="R_LPLIPAL1E161pp"
-      name="Lysophospholipase L1 (2-acylglycerophosphoethanolamine, n-C16:1) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LPLIPAL1E161pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LPLIPAL1E161pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101152" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0494" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_1agpe161_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g3pe_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_hdcea_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LPLIPAL1G140pp" metaid="R_LPLIPAL1G140pp"
-      name="Lysophospholipase L1 (2-acylglycerophosphoglycerol, n-C14:0) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LPLIPAL1G140pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LPLIPAL1G140pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101156" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0494" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_1agpg140_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g3pg_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ttdca_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ACONTa" metaid="R_ACONTa" name="Aconitase (half-reaction A, Citrate hydro-lyase)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ACONTa">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ACONTa" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ACONITATEDEHYDR-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.3" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01325" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95386" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10228" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10229" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10230" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10231" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0118" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1276" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cit_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_acon_C_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MLDCP2App" metaid="R_MLDCP2App" name="Murein L,D-carboxypeptidase (murein5p5p) (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MLDCP2App">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MLDCP2App" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.4.17.13" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101613" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0925" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1678" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1113" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0819" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1990" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_murein5p5p_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_alaala_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_murein5p3p_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_12DGR140tipp" metaid="R_12DGR140tipp"
-      name="1,2 diacylglycerol transport via flipping (periplasm to cytoplasm, n-C14:0)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_12DGR140tipp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/12DGR140tipp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94676" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_12dgr140_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_12dgr140_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_12DGR160tipp" metaid="R_12DGR160tipp"
-      name="1,2 diacylglycerol transport via flipping (periplasm to cytoplasm, n-C16:0)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_12DGR160tipp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/12DGR160tipp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94678" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_12dgr160_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_12dgr160_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_12DGR180tipp" metaid="R_12DGR180tipp"
-      name="1,2 diacylglycerol transport via flipping (periplasm to cytoplasm, n-C18:0)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_12DGR180tipp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/12DGR180tipp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94680" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_12dgr180_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_12dgr180_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PGPP120pp" metaid="R_PGPP120pp"
-      name="Phosphatidylglycerol phosphate phosphatase (periplasm, n-C14:0)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PGPP120pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PGPP120pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.27" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102560" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0418" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1278" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pgp120_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pg120_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PGPP181pp" metaid="R_PGPP181pp"
-      name="Phosphatidylglycerol phosphate phosphatase (periplasm, n-C18:1)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PGPP181pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PGPP181pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.27" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102567" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0418" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1278" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pgp181_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pg181_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CLPNH120pp" metaid="R_CLPNH120pp" name="Cardiolipin hydrolase (periplasm, n-C12:0)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CLPNH120pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CLPNH120pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96774" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_clpn120_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pa120_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pg120_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CLPNH140pp" metaid="R_CLPNH140pp" name="Cardiolipin hydrolase (periplasm, n-C14:0)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CLPNH140pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CLPNH140pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96775" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_clpn140_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pa140_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pg140_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_12ppd__R_e" metaid="R_EX_12ppd__R_e" name="(R)-Propane-1,2-diol exchange"
-      reversible="false" sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_12ppd__R_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/12ppd__R" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_12ppd__R_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PGSA181" metaid="R_PGSA181" name="Phosphatidylglycerol synthase (n-C18:1)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PGSA181">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PGSA181" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.8.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102596" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1912" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cdpdodec11eg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glyc3p_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cmp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pgp181_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PGPP140" metaid="R_PGPP140" name="Phosphatidylglycerol phosphate phosphatase (n-C14:0)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PGPP140">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PGPP140" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102561" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0418" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1278" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pgp140_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pg140_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PGPP141" metaid="R_PGPP141" name="Phosphatidylglycerol phosphate phosphatase (n-C14:1)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PGPP141">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PGPP141" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102562" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0418" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1278" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pgp141_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pg141_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MDDCP5pp" metaid="R_MDDCP5pp" name="Murein D,D-carboxypeptidase (murein5p3p) (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MDDCP5pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MDDCP5pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.4.16.4" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101433" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2430" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0839" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0632" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3182" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2010" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0376" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_murein5p3p_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ala__D_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_murein4p3p_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MLTGY3pp" metaid="R_MLTGY3pp" name="Murein lytic transglycosylase (murein3p3p) (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MLTGY3pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MLTGY3pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101628" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0211" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2963" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2701" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4392" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2813" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1193" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2558" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1097" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_murein3p3p_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_anhgm3p_p" stoichiometry="2" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_G3PAT180" metaid="R_G3PAT180" name="Glycerol-3-phosphate acyltransferase (C18:0)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_G3PAT180">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/G3PAT180" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.15" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99860" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b1094" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4041" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glyc3p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ocdcaACP_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_1odecg3p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ACP_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_AGPAT140" metaid="R_AGPAT140"
-      name="1-tetradecanoyl-sn-glycerol 3-phosphate O-acyltransferase (n-C14:0)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_AGPAT140">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/AGPAT140" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.51" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95559" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3018" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_1tdecg3p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_myrsACP_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pa140_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PGSA160" metaid="R_PGSA160" name="Phosphatidylglycerol synthase (n-C16:0)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PGSA160">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PGSA160" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.8.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102592" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1912" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cdpdhdecg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glyc3p_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cmp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pgp160_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MLDCP2Bpp" metaid="R_MLDCP2Bpp" name="Murein L,D-carboxypeptidase (murein4p3p) (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MLDCP2Bpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MLDCP2Bpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.4.17.13" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101614" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1678" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0819" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1113" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1990" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0925" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_murein4p3p_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ala__D_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_murein3p3p_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_3OAS140" metaid="R_3OAS140" name="3-oxoacyl-[acyl-carrier-protein] synthase (n-C14:0)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_3OAS140">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/3OAS140" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.86" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94957" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2323" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1095" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ddcaACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_malACP_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3omrsACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_3OAR140" metaid="R_3OAR140" name="3-oxoacyl-[acyl-carrier-protein] reductase (n-C14:0)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_3OAR140">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/3OAR140" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-9536" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.100" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.85" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.86" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R04566" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94944" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1093" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3omrsACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3hmrsACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_3OAR160" metaid="R_3OAR160" name="3-oxoacyl-[acyl-carrier-protein] reductase (n-C16:0)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_3OAR160">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/3OAR160" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.100" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.85" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.86" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R04543" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94946" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1093" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3opalmACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3hpalmACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PGSA161" metaid="R_PGSA161" name="Phosphatidylglycerol synthase (n-C16:1)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PGSA161">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PGSA161" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.8.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102594" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1912" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cdpdhdec9eg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glyc3p_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cmp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pgp161_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_3HAD181" metaid="R_3HAD181"
-      name="3-hydroxyacyl-[acyl-carrier-protein] dehydratase (n-C18:1)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_3HAD181">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/3HAD181" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.61" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94884" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0954" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0180" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3hcvac11eACP_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_t3c11vaceACP_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PGPP160" metaid="R_PGPP160" name="Phosphatidylglycerol phosphate phosphatase (n-C16:0)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PGPP160">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PGPP160" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.27" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102563" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0418" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1278" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pgp160_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pg160_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PGPP180" metaid="R_PGPP180" name="Phosphatidylglycerol phosphate phosphatase (n-C18:0)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PGPP180">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PGPP180" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.27" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102566" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0418" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1278" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pgp180_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pg180_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PGPP161" metaid="R_PGPP161" name="Phosphatidylglycerol phosphate phosphatase (n-C16:1)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PGPP161">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PGPP161" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.27" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102565" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0418" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1278" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pgp161_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pg161_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PGPP181" metaid="R_PGPP181" name="Phosphatidylglycerol phosphate phosphatase (n-C18:1)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PGPP181">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PGPP181" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.27" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102567" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1278" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0418" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pgp181_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pg181_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CDAPPA180" metaid="R_CDAPPA180" name="CDP-Diacylglycerol pyrophostatase (n-C18:0)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CDAPPA180">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CDAPPA180" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.26" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96506" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3918" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cdpdodecg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cmp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pa180_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NTP12" metaid="R_NTP12" name="Nucleoside-triphosphatase (XTP)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NTP12">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NTP12" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-5074" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102041" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28406" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28407" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28408" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28409" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4394" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_xtp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_xdp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PE141abcpp" metaid="R_PE141abcpp"
-      name="Phosphatidylethanolamine transport via ABC system (n-C14:1, periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PE141abcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PE141abcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102443" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0914" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pe141_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pe141_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PE160abcpp" metaid="R_PE160abcpp"
-      name="Phosphatidylethanolamine transport via ABC system (n-C16:0, periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PE160abcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PE160abcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102444" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0914" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pe160_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pe160_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PE161abcpp" metaid="R_PE161abcpp"
-      name="Phosphatidylethanolamine transport via ABC system (n-C16:1, periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PE161abcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PE161abcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102445" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0914" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pe161_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pe161_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PSD141" metaid="R_PSD141" name="Phosphatidylserine decarboxylase (n-C14:1)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PSD141">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PSD141" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103231" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4160" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ps141_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pe141_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PG140abcpp" metaid="R_PG140abcpp"
-      name="Phosphatidylglycerol transport via ABC system (n-C14:0, periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PG140abcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PG140abcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102517" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0914" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pg140_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pg140_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PG141abcpp" metaid="R_PG141abcpp"
-      name="Phosphatidylglycerol transport via ABC system (n-C14:1, periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PG141abcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PG141abcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102518" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0914" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pg141_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pg141_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PG180abcpp" metaid="R_PG180abcpp"
-      name="Phosphatidylglycerol transport via ABC system (n-C18:0, periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PG180abcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PG180abcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102521" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0914" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pg180_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pg180_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PG181abcpp" metaid="R_PG181abcpp"
-      name="Phosphatidylglycerol transport via ABC system (n-C18:1, periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PG181abcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PG181abcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102524" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0914" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pg181_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pg181_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PGP141abcpp" metaid="R_PGP141abcpp"
-      name="Phosphatidylglycerophosphate transport via ABC system (n-C14:1, periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PGP141abcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PGP141abcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102552" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0914" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pgp141_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pgp141_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PGP160abcpp" metaid="R_PGP160abcpp"
-      name="Phosphatidylglycerophosphate transport via ABC system (n-C16:0, periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PGP160abcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PGP160abcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102553" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0914" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pgp160_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pgp160_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PGP180abcpp" metaid="R_PGP180abcpp"
-      name="Phosphatidylglycerophosphate transport via ABC system (n-C18:0, periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PGP180abcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PGP180abcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102555" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0914" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pgp180_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pgp180_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PAPA181pp" metaid="R_PAPA181pp" name="Phosphatidate phosphatase (periplasmic, n-C18:1)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PAPA181pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PAPA181pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102356" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1278" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pa181_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_12dgr181_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PA140abcpp" metaid="R_PA140abcpp"
-      name="Phosphatidate transport via ABC system (n-C14:0, periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PA140abcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PA140abcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102305" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0914" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pa140_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pa140_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_12DGR120tipp" metaid="R_12DGR120tipp"
-      name="1,2 diacylglycerol transport via flipping (periplasm to cytoplasm, n-C12:0)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_12DGR120tipp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/12DGR120tipp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94675" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_12dgr120_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_12dgr120_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MDDCP4pp" metaid="R_MDDCP4pp" name="Murein D,D-carboxypeptidase (murein5p4p) (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MDDCP4pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MDDCP4pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.4.16.4" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101432" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2430" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0839" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0632" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3182" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2010" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0376" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_murein5p4p_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ala__D_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_murein4p4p_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_CLPNS140pp" metaid="R_CLPNS140pp" name="Cardiolipin synthase (periplasmic, n-C14:0)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CLPNS140pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CLPNS140pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96782" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1249" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0789" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pg140_p" stoichiometry="2" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_clpn140_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glyc_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_CLPNS141pp" metaid="R_CLPNS141pp" name="Cardiolipin synthase (periplasmic, n-C14:1)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CLPNS141pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CLPNS141pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96783" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1249" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0789" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pg141_p" stoichiometry="2" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_clpn141_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glyc_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PG120abcpp" metaid="R_PG120abcpp"
-      name="Phosphatidylglycerol transport via ABC system (n-C12:0, periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PG120abcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PG120abcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102516" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0914" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pg120_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pg120_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PE140abcpp" metaid="R_PE140abcpp"
-      name="Phosphatidylethanolamine transport via ABC system (n-C14:0, periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PE140abcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PE140abcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102442" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0914" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pe140_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pe140_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CFAS160E" metaid="R_CFAS160E"
-      name="Cyclopropane fatty acid synthase (Phosphatidylethanolamine, n-C16:0)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CFAS160E">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CFAS160E" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.1.1.79" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96652" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1661" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_amet_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pe161_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ahcys_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cpe160_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CFAS180E" metaid="R_CFAS180E"
-      name="Cyclopropane fatty acid synthase (Phosphatidylethanolamine, n-C18:0)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CFAS180E">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CFAS180E" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.1.1.79" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96654" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1661" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_amet_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pe181_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ahcys_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cpe180_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CFAS180G" metaid="R_CFAS180G"
-      name="Cyclopropane fatty acid synthase (Phosphatidylglycerol, n-C18:0)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CFAS180G">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CFAS180G" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.1.1.79" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96655" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1661" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_amet_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pg181_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ahcys_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cpg180_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PAPA160" metaid="R_PAPA160" name="Phosphatidate phosphatase (n-C16:0)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PAPA160">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PAPA160" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.4" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102350" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1278" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pa160_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_12dgr160_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PAPA180" metaid="R_PAPA180" name="Phosphatidate phosphatase (n-C18:0)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PAPA180">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PAPA180" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102354" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1278" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pa180_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_12dgr180_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PAPA181" metaid="R_PAPA181" name="Phosphatidate phosphatase (n-C18:1)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PAPA181">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PAPA181" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102356" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1278" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pa181_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_12dgr181_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PETNT161pp" metaid="R_PETNT161pp" name="Phosphoethanolamine transferase (c-C16:1)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PETNT161pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PETNT161pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102499" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3546" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_lipa_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pe161_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_12dgr161_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_enlipa_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PSSA160" metaid="R_PSSA160" name="Phosphatidylserine syntase (n-C16:0)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PSSA160">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PSSA160" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.8.8" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103269" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2585" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cdpdhdecg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ser__L_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cmp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ps160_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PSSA181" metaid="R_PSSA181" name="Phosphatidylserine syntase (n-C18:1)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PSSA181">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PSSA181" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.8.8" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103272" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2585" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cdpdodec11eg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ser__L_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cmp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ps181_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DAGK140" metaid="R_DAGK140" name="Diacylglycerol kinase (n-C14:0)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DAGK140">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DAGK140" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97092" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4042" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_12dgr140_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pa140_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DAGK160" metaid="R_DAGK160" name="Diacylglycerol kinase (n-C16:0)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DAGK160">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DAGK160" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.1.107" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97094" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4042" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_12dgr160_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pa160_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DAGK141" metaid="R_DAGK141" name="Diacylglycerol kinase (n-C14:1)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DAGK141">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DAGK141" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97093" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4042" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_12dgr141_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pa141_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DAGK161" metaid="R_DAGK161" name="Diacylglycerol kinase (n-C16:1)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DAGK161">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DAGK161" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97097" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4042" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_12dgr161_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pa161_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_AGPAT181" metaid="R_AGPAT181"
-      name="1-octadec-7-enoyl-sn-glycerol 3-phosphate O-acyltransferase (n-C18:1)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_AGPAT181">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/AGPAT181" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.51" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95567" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3018" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_1odec11eg3p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_octeACP_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pa181_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MDDEP3pp" metaid="R_MDDEP3pp" name="Murein D,D-endopeptidase (murein5px4p) (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MDDEP3pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MDDEP3pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101436" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1655" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2175" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2328" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3182" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2134" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0376" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1856" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_murein5px4p_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_murein5p4p_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MDDEP4pp" metaid="R_MDDEP4pp" name="Murein D,D-endopeptidase (murein4px4px4p) (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MDDEP4pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MDDEP4pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101437" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1655" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0376" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2328" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3182" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2134" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2175" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1856" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_murein4px4px4p_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_murein4px4p4p_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MLTGY1pp" metaid="R_MLTGY1pp" name="Murein lytic transglycosylase (murein4p4p) (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MLTGY1pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MLTGY1pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101626" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0211" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1193" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2813" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2963" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4392" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2701" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2558" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1097" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_murein4p4p_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_anhgm4p_p" stoichiometry="2" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_CGLYtex" metaid="R_CGLYtex"
-      name="L-Cysteinylglycine transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CGLYtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CGLYtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96658" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cgly_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cgly_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_3HAD40" metaid="R_3HAD40" name="3-hydroxyacyl-[acyl-carrier-protein] dehydratase (n-C4:0)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_3HAD40">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/3HAD40" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.58" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94885" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0954" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0180" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3haACP_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_but2eACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PLIPA1E141pp" metaid="R_PLIPA1E141pp"
-      name="Phospholipase A1 (phosphatidylethanolamine, n-C14:1) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PLIPA1E141pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PLIPA1E141pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102976" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3821" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pe141_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2agpe141_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ttdcea_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_3OAS60" metaid="R_3OAS60" name="3-oxoacyl-[acyl-carrier-protein] synthase (n-C6:0)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_3OAS60">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/3OAS60" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.86" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94963" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1095" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2323" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_butACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_malACP_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3ohexACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_3OAS160" metaid="R_3OAS160" name="3-oxoacyl-[acyl-carrier-protein] synthase (n-C16:0)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_3OAS160">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/3OAS160" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.86" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94959" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2323" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1095" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_malACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_myrsACP_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3opalmACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_3OAR60" metaid="R_3OAR60" name="3-oxoacyl-[acyl-carrier-protein] reductase (n-C6:0)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_3OAR60">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/3OAR60" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.100" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.85" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.86" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R04953" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94952" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1093" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3ohexACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3hhexACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_3OAR80" metaid="R_3OAR80" name="3-oxoacyl-[acyl-carrier-protein] reductase (n-C8:0)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_3OAR80">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/3OAR80" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-9524" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.100" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.85" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.86" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R04536" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94953" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1093" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3ooctACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3hoctACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MLDCP3App" metaid="R_MLDCP3App"
-      name="Murein L,D-carboxypeptidase (murein5px3p) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MLDCP3App">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MLDCP3App" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.4.17.13" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101615" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1678" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1990" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0925" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1113" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0819" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_murein5px3p_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_alaala_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_murein3px3p_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MLDCP1Bpp" metaid="R_MLDCP1Bpp" name="Murein L,D-carboxypeptidase (murein4p4p) (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MLDCP1Bpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MLDCP1Bpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.4.17.13" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101612" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1678" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1990" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0925" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1113" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0819" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_murein4p4p_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ala__D_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_murein4p3p_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_2AGPE181tipp" metaid="R_2AGPE181tipp"
-      name="2-Acyl-sn-glycero-3-phosphoethanolamine (n-C18:1) transporter via facilitated diffusion (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_2AGPE181tipp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/2AGPE181tipp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94756" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2835" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2agpe181_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2agpe181_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_2AGPA140tipp" metaid="R_2AGPA140tipp"
-      name="2-Acyl-sn-glycero-3-phosphatidate (n-C14:0) transporter via facilitated diffusion (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_2AGPA140tipp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/2AGPA140tipp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94744" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2835" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2tdecg3p_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2tdecg3p_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_2AGPA160tipp" metaid="R_2AGPA160tipp"
-      name="2-Acyl-sn-glycero-3-phosphatidate (n-C16:0) transporter via facilitated diffusion (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_2AGPA160tipp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/2AGPA160tipp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94746" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2835" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2hdecg3p_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2hdecg3p_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_2AGPA180tipp" metaid="R_2AGPA180tipp"
-      name="2-Acyl-sn-glycero-3-phosphatidate (n-C18:0) transporter via facilitated diffusion (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_2AGPA180tipp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/2AGPA180tipp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94748" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2835" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2odecg3p_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2odecg3p_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_2AGPA141tipp" metaid="R_2AGPA141tipp"
-      name="2-Acyl-sn-glycero-3-phosphatidate (n-C14:1) transporter via facilitated diffusion (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_2AGPA141tipp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/2AGPA141tipp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94745" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2835" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2tdec7eg3p_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2tdec7eg3p_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_urate_e" metaid="R_EX_urate_e" name="Urate exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_urate_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/urate" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_urate_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PLIPA1G160pp" metaid="R_PLIPA1G160pp"
-      name="Phospholipase A1 (phosphatidylglycerol, n-C16:0) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PLIPA1G160pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PLIPA1G160pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102984" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3821" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pg160_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2agpg160_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_hdca_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PLIPA1G141pp" metaid="R_PLIPA1G141pp"
-      name="Phospholipase A1 (phosphatidylglycerol, n-C14:1) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PLIPA1G141pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PLIPA1G141pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102983" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3821" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pg141_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2agpg141_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ttdcea_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LPLIPAL2E160" metaid="R_LPLIPAL2E160"
-      name="Lysophospholipase L2 (2-acylglycerophosphoethanolamine, n-C16:0)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LPLIPAL2E160">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LPLIPAL2E160" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.1.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101186" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3825" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2agpe160_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g3pe_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_hdca_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LPLIPAL2G140" metaid="R_LPLIPAL2G140"
-      name="Lysophospholipase L2 (2-acylglycerophosphoglycerol, n-C14:0)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LPLIPAL2G140">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LPLIPAL2G140" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101191" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3825" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2agpg140_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g3pg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ttdca_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LPLIPAL2G160" metaid="R_LPLIPAL2G160"
-      name="Lysophospholipase L2 (2-acylglycerophosphoglycerol, n-C16:0)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LPLIPAL2G160">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LPLIPAL2G160" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101193" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3825" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2agpg160_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g3pg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_hdca_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_2AGPE140tipp" metaid="R_2AGPE140tipp"
-      name="2-Acyl-sn-glycero-3-phosphoethanolamine (n-C14:0) transporter via facilitated diffusion (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_2AGPE140tipp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/2AGPE140tipp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94751" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2835" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2agpe140_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2agpe140_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_2AGPE160tipp" metaid="R_2AGPE160tipp"
-      name="2-Acyl-sn-glycero-3-phosphoethanolamine (n-C16:0) transporter via facilitated diffusion (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_2AGPE160tipp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/2AGPE160tipp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94753" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2835" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2agpe160_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2agpe160_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_2AGPE180tipp" metaid="R_2AGPE180tipp"
-      name="2-Acyl-sn-glycero-3-phosphoethanolamine (n-C18:0) transporter via facilitated diffusion (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_2AGPE180tipp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/2AGPE180tipp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94755" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2835" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2agpe180_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2agpe180_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_2AGPE141tipp" metaid="R_2AGPE141tipp"
-      name="2-Acyl-sn-glycero-3-phosphoethanolamine (n-C14:1) transporter via facilitated diffusion (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_2AGPE141tipp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/2AGPE141tipp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94752" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2835" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2agpe141_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2agpe141_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_2AGPE161tipp" metaid="R_2AGPE161tipp"
-      name="2-Acyl-sn-glycero-3-phosphoethanolamine (n-C16:1) transporter via facilitated diffusion (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_2AGPE161tipp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/2AGPE161tipp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94754" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2835" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2agpe161_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2agpe161_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_2AGPA161tipp" metaid="R_2AGPA161tipp"
-      name="2-Acyl-sn-glycero-3-phosphatidate (n-C16:1) transporter via facilitated diffusion (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_2AGPA161tipp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/2AGPA161tipp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94747" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2835" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2hdec9eg3p_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2hdec9eg3p_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_2AGPA181tipp" metaid="R_2AGPA181tipp"
-      name="2-Acyl-sn-glycero-3-phosphatidate (n-C18:1) transporter via facilitated diffusion (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_2AGPA181tipp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/2AGPA181tipp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94749" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2835" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2odec11eg3p_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2odec11eg3p_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_2AGPG120tipp" metaid="R_2AGPG120tipp"
-      name="2-Acyl-sn-glycero-3-phosphoglycerol (n-C12:0) transporter via facilitated diffusion (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_2AGPG120tipp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/2AGPG120tipp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94764" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2835" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2agpg120_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2agpg120_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LPLIPAL2G120" metaid="R_LPLIPAL2G120"
-      name="Lysophospholipase L2 (2-acylglycerophosphoglycerol, n-C12:0)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LPLIPAL2G120">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LPLIPAL2G120" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101190" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3825" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2agpg120_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ddca_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g3pg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PA141abcpp" metaid="R_PA141abcpp"
-      name="Phosphatidate transport via ABC system (n-C14:1, periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PA141abcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PA141abcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102306" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0914" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pa141_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pa141_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PA161abcpp" metaid="R_PA161abcpp"
-      name="Phosphatidate transport via ABC system (n-C16:1, periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PA161abcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PA161abcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102308" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0914" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pa161_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pa161_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PA180abcpp" metaid="R_PA180abcpp"
-      name="Phosphatidate transport via ABC system (n-C18:0, periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PA180abcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PA180abcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102309" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0914" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pa180_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pa180_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PGPP161pp" metaid="R_PGPP161pp"
-      name="Phosphatidylglycerol phosphate phosphatase (periplasm, n-C16:1)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PGPP161pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PGPP161pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.27" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102565" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0418" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1278" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pgp161_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pg161_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PE120abcpp" metaid="R_PE120abcpp"
-      name="Phosphatidylethanolamine transport via ABC system (n-C12:0, periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PE120abcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PE120abcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102441" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0914" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pe120_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pe120_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PE180abcpp" metaid="R_PE180abcpp"
-      name="Phosphatidylethanolamine transport via ABC system (n-C18:0, periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PE180abcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PE180abcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102450" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0914" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pe180_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pe180_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PAPA140" metaid="R_PAPA140" name="Phosphatidate phosphatase (n-C14:0)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PAPA140">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PAPA140" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102348" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1278" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pa140_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_12dgr140_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PAPA141" metaid="R_PAPA141" name="Phosphatidate phosphatase (n-C14:1)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PAPA141">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PAPA141" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102349" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1278" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pa141_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_12dgr141_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PAPA161" metaid="R_PAPA161" name="Phosphatidate phosphatase (n-C16:1)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PAPA161">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PAPA161" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102353" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1278" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pa161_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_12dgr161_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_GTHOXtex" metaid="R_GTHOXtex"
-      name="Glutathione (ox) transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GTHOXtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GTHOXtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100443" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gthox_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gthox_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DSBAO1" metaid="R_DSBAO1" name="DsbA protein reoxidation reaction (aerobic)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DSBAO1">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DSBAO1" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97791" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b1185" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3860" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dsbard_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_q8_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dsbaox_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_q8h2_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DSBAO2" metaid="R_DSBAO2" name="DsbA protein reoxidation reaction (anaerobic)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DSBAO2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DSBAO2" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97792" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b1185" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3860" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dsbard_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mqn8_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dsbaox_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_mql8_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DSBDR" metaid="R_DSBDR" name="DsbD reductase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DSBDR">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DSBDR" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97794" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b2582" />
-              <fbc:geneProductRef fbc:geneProduct="G_b4136" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b3781" />
-              <fbc:geneProductRef fbc:geneProduct="G_b4136" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dsbdox_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_trdrd_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dsbdrd_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_trdox_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_TDSR1" metaid="R_TDSR1" name="Thiol:disulfide reductase (DsbC)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_TDSR1">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/TDSR1" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104764" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b2893" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4136" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dsbcox_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dsbdrd_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dsbcrd_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dsbdox_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CGLYabcpp" metaid="R_CGLYabcpp"
-      name="L-Cysteinylglycine (Cys-Gly) transport via ABC system (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CGLYabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CGLYabcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96656" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b3540" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3542" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3544" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3543" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3541" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cgly_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cgly_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PLIPA2A120pp" metaid="R_PLIPA2A120pp"
-      name="Phospholipase A2 (phosphatidate, n-C12:0) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PLIPA2A120pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PLIPA2A120pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.1.4" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102989" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3821" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pa120_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_1ddecg3p_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ddca_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PLIPA2A160pp" metaid="R_PLIPA2A160pp"
-      name="Phospholipase A2 (phosphatidate, n-C16:0) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PLIPA2A160pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PLIPA2A160pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.1.4" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102992" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3821" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pa160_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_1hdecg3p_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_hdca_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CLPNH180pp" metaid="R_CLPNH180pp" name="Cardiolipin hydrolase (periplasm, n-C18:0)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CLPNH180pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CLPNH180pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96779" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_clpn180_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pa180_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pg180_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LPLIPAL2E120" metaid="R_LPLIPAL2E120"
-      name="Lysophospholipase L2 (2-acylglycerophosphoethanolamine, n-C12:0)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LPLIPAL2E120">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LPLIPAL2E120" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101183" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3825" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2agpe120_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ddca_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g3pe_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EAR100x" metaid="R_EAR100x" name="Enoyl-[acyl-carrier-protein] reductase (NADH) (n-C10:0)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EAR100x">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/EAR100x" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97845" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1288" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadh_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_tdec2eACP_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dcaACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nad_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EAR120x" metaid="R_EAR120x" name="Enoyl-[acyl-carrier-protein] reductase (NADH) (n-C12:0)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EAR120x">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/EAR120x" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97847" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1288" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadh_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_tddec2eACP_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ddcaACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nad_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EAR160x" metaid="R_EAR160x" name="Enoyl-[acyl-carrier-protein] reductase (NADH) (n-C16:0)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EAR160x">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/EAR160x" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.3.1.9" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97855" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1288" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadh_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_tpalm2eACP_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nad_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_palmACP_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EAR140y" metaid="R_EAR140y" name="Enoyl-[acyl-carrier-protein] reductase (NADPH) (n-C14:0)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EAR140y">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/EAR140y" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.86" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97852" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1288" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_tmrs2eACP_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_myrsACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_3OAS121" metaid="R_3OAS121" name="3-oxoacyl-[acyl-carrier-protein] synthase (n-C12:1)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_3OAS121">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/3OAS121" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.41" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94956" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2323" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cdec3eACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_malACP_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3ocddec5eACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_3OAS80" metaid="R_3OAS80" name="3-oxoacyl-[acyl-carrier-protein] synthase (n-C8:0)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_3OAS80">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/3OAS80" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.86" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94964" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2323" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1095" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_hexACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_malACP_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3ooctACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_3OAS100" metaid="R_3OAS100" name="3-oxoacyl-[acyl-carrier-protein] synthase (n-C10:0)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_3OAS100">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/3OAS100" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.86" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94954" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2323" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1095" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_malACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ocACP_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3odecACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_3OAS120" metaid="R_3OAS120" name="3-oxoacyl-[acyl-carrier-protein] synthase (n-C12:0)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_3OAS120">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/3OAS120" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.86" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94955" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1095" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2323" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dcaACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_malACP_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3oddecACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_3OAR40" metaid="R_3OAR40" name="3-oxoacyl-[acyl-carrier-protein] reductase (n-C4:0)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_3OAR40">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/3OAR40" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.100" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94950" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1093" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_actACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3haACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_3OAR100" metaid="R_3OAR100" name="3-oxoacyl-[acyl-carrier-protein] reductase (n-C10:0)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_3OAR100">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/3OAR100" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-9528" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.100" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.85" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.86" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R04534" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94941" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1093" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3odecACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3hdecACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_3HAD60" metaid="R_3HAD60" name="3-hydroxyacyl-[acyl-carrier-protein] dehydratase (n-C6:0)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_3HAD60">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/3HAD60" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.85" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.86" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.58" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.59" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R04954" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94887" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0954" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0180" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3hhexACP_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_thex2eACP_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_3HAD100" metaid="R_3HAD100"
-      name="3-hydroxyacyl-[acyl-carrier-protein] dehydratase (n-C10:0)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_3HAD100">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/3HAD100" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.85" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.86" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.58" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.59" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.60" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.61" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R04535" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94876" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0954" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0180" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3hdecACP_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_tdec2eACP_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_3HAD140" metaid="R_3HAD140"
-      name="3-hydroxyacyl-[acyl-carrier-protein] dehydratase (n-C14:0)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_3HAD140">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/3HAD140" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-9537" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.85" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.86" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.59" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.61" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R04568" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94879" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0954" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0180" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3hmrsACP_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_tmrs2eACP_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_3HAD160" metaid="R_3HAD160"
-      name="3-hydroxyacyl-[acyl-carrier-protein] dehydratase (n-C16:0)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_3HAD160">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/3HAD160" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.85" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.86" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.59" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.61" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R04544" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94881" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0954" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0180" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3hpalmACP_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_tpalm2eACP_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_AGPAT180" metaid="R_AGPAT180"
-      name="1-octadecanoyl-sn-glycerol 3-phosphate O-acyltransferase (n-C18:0)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_AGPAT180">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/AGPAT180" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.51" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95565" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3018" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_1odecg3p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ocdcaACP_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pa180_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_AGPAT141" metaid="R_AGPAT141"
-      name="1-tetradec-7-enoyl-sn-glycerol 3-phosphate O-acyltransferase (n-C14:1)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_AGPAT141">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/AGPAT141" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.51" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95560" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3018" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_1tdec7eg3p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_tdeACP_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pa141_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_AGPAT161" metaid="R_AGPAT161"
-      name="1-hexadec-7-enoyl-sn-glycerol 3-phosphate O-acyltransferase (n-C16:1)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_AGPAT161">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/AGPAT161" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.51" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95564" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3018" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_1hdec9eg3p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_hdeACP_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pa161_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DASYN120" metaid="R_DASYN120" name="CDP-diacylglycerol synthetase (n-C12:0)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DASYN120">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DASYN120" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.7.41" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97154" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0175" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ctp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pa120_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cdpdddecg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EAR40x" metaid="R_EAR40x" name="Enoyl-[acyl-carrier-protein] reductase (NADH) (n-C4:0)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EAR40x">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/EAR40x" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97863" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1288" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_but2eACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadh_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_butACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nad_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EAR60y" metaid="R_EAR60y" name="Enoyl-[acyl-carrier-protein] reductase (NADPH) (n-C6:0)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EAR60y">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/EAR60y" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.86" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97866" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1288" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_thex2eACP_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_hexACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MLDEP1pp" metaid="R_MLDEP1pp" name="Murein L,D-endopeptidase (murein3px3p) (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MLDEP1pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MLDEP1pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101616" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2328" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_murein3px3p_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_murein3p3p_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MLDEP2pp" metaid="R_MLDEP2pp" name="Murein L,D-endopeptidase (murein5px3p) (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MLDEP2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MLDEP2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101617" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2328" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_murein5px3p_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_murein5p3p_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MLTGY2pp" metaid="R_MLTGY2pp" name="Murein lytic transglycosylase (murein4p3p) (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MLTGY2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MLTGY2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101627" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0211" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1193" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2813" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2963" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4392" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2701" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2558" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1097" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_murein4p3p_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_anhgm3p_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_anhgm4p_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MLTGY4pp" metaid="R_MLTGY4pp"
-      name="Murein lytic transglycosylase (murein4px4p4p) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MLTGY4pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MLTGY4pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101629" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0211" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2963" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2701" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4392" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2813" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1193" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2558" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1097" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_murein4px4p4p_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_anhgm4p_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_murein4px4p_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EAR60x" metaid="R_EAR60x" name="Enoyl-[acyl-carrier-protein] reductase (NADH) (n-C6:0)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EAR60x">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/EAR60x" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97865" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1288" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadh_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_thex2eACP_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_hexACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nad_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EAR80x" metaid="R_EAR80x" name="Enoyl-[acyl-carrier-protein] reductase (NADH) (n-C8:0)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EAR80x">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/EAR80x" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97867" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1288" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadh_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_toct2eACP_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nad_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ocACP_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PE181abcpp" metaid="R_PE181abcpp"
-      name="Phosphatidylethanolamine transport via ABC system (n-C18:1, periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PE181abcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PE181abcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102459" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0914" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pe181_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pe181_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_12DGR161tipp" metaid="R_12DGR161tipp"
-      name="1,2 diacylglycerol transport via flipping (periplasm to cytoplasm, n-C16:1)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_12DGR161tipp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/12DGR161tipp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94679" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_12dgr161_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_12dgr161_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_12DGR181tipp" metaid="R_12DGR181tipp"
-      name="1,2 diacylglycerol transport via flipping (periplasm to cytoplasm, n-C18:1)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_12DGR181tipp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/12DGR181tipp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94681" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_12dgr181_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_12dgr181_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NTP11" metaid="R_NTP11" name="Nucleoside-triphosphatase (dITP)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NTP11">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NTP11" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102040" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30859" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30860" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30861" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30862" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4394" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ditp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_didp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_3OAS180" metaid="R_3OAS180" name="3-oxoacyl-[acyl-carrier-protein] synthase (n-C18:0)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_3OAS180">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/3OAS180" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.41" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94961" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1095" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2323" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_malACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_palmACP_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3ooctdACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_3HAD180" metaid="R_3HAD180"
-      name="3-hydroxyacyl-[acyl-carrier-protein] dehydratase (n-C18:0)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_3HAD180">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/3HAD180" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.61" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R07764" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94883" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0954" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0180" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3hoctaACP_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_toctd2eACP_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CDAPPA120" metaid="R_CDAPPA120" name="CDP-Diacylglycerol pyrophostatase (n-C12:0)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CDAPPA120">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CDAPPA120" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.26" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96500" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3918" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cdpdddecg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cmp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pa120_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PSSA120" metaid="R_PSSA120" name="Phosphatidylserine syntase (n-C12:0)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PSSA120">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PSSA120" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.8.8" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103266" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2585" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cdpdddecg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ser__L_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cmp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ps120_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PSD120" metaid="R_PSD120" name="Phosphatidylserine decarboxylase (n-C12:0)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PSD120">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PSD120" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.1.1.65" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103229" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4160" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ps120_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pe120_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PAPA120" metaid="R_PAPA120" name="Phosphatidate phosphatase (n-C12:0)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PAPA120">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PAPA120" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102347" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1278" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pa120_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_12dgr120_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_cpgn_un_e" metaid="R_EX_cpgn_un_e" name="Coprogen unloaded (no Fe(III)) exchange"
-      reversible="false" sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_cpgn_un_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/cpgn_un" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cpgn_un_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MDDEP1pp" metaid="R_MDDEP1pp" name="Murein D,D-endopeptidase (murein4px4p) (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MDDEP1pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MDDEP1pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101434" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2175" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1655" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2328" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3182" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2134" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1856" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0376" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_murein4px4p_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_murein4p4p_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MDDEP2pp" metaid="R_MDDEP2pp" name="Murein D,D-endopeptidase (murein3px4p) (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MDDEP2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MDDEP2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101435" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2175" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1655" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2328" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3182" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2134" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1856" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0376" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_murein3px4p_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_murein4p3p_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PSD181" metaid="R_PSD181" name="Phosphatidylserine decarboxylase (n-C18:1)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PSD181">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PSD181" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.1.1.65" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103235" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4160" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ps181_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pe181_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DAGK180" metaid="R_DAGK180" name="Diacylglycerol kinase (n-C18:0)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DAGK180">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DAGK180" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97098" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4042" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_12dgr180_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pa180_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DAGK181" metaid="R_DAGK181" name="Diacylglycerol kinase (n-C18:1)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DAGK181">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DAGK181" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97100" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4042" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_12dgr181_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pa181_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PLIPA2E120pp" metaid="R_PLIPA2E120pp"
-      name="Phospholipase A2 (phosphatidylethanolamine, n-C12:0) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PLIPA2E120pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PLIPA2E120pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102996" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3821" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pe120_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_1agpe120_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ddca_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PLIPA2G141pp" metaid="R_PLIPA2G141pp"
-      name="Phospholipase A2 (phosphatidylglycerol, n-C14:1) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PLIPA2G141pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PLIPA2G141pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103005" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3821" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pg141_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_1agpg141_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ttdcea_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PLIPA2G161pp" metaid="R_PLIPA2G161pp"
-      name="Phospholipase A2 (phosphatidylglycerol, n-C16:1) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PLIPA2G161pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PLIPA2G161pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103007" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3821" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pg161_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_1agpg161_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_hdcea_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LPLIPAL1A120pp" metaid="R_LPLIPAL1A120pp"
-      name="Lysophospholipase L1 (2-acylglycerophosphotidate, n-C12:0) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LPLIPAL1A120pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LPLIPAL1A120pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.1.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101141" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0494" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_1ddecg3p_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ddca_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glyc3p_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LPLIPAL1A140pp" metaid="R_LPLIPAL1A140pp"
-      name="Lysophospholipase L1 (2-acylglycerophosphotidate, n-C14:0) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LPLIPAL1A140pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LPLIPAL1A140pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.1.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101142" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0494" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_1tdecg3p_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glyc3p_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ttdca_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LPLIPAL1A181pp" metaid="R_LPLIPAL1A181pp"
-      name="Lysophospholipase L1 (2-acylglycerophosphotidate, n-C18:1) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LPLIPAL1A181pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LPLIPAL1A181pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101147" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0494" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_1odec11eg3p_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glyc3p_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ocdcea_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LPLIPAL1E120pp" metaid="R_LPLIPAL1E120pp"
-      name="Lysophospholipase L1 (2-acylglycerophosphoethanolamine, n-C12:0) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LPLIPAL1E120pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LPLIPAL1E120pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101148" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0494" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_1agpe120_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ddca_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g3pe_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_3OAR180" metaid="R_3OAR180" name="3-oxoacyl-[acyl-carrier-protein] reductase (n-C18:0)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_3OAR180">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/3OAR180" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.100" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94948" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1093" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3ooctdACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3hoctaACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_G3PAT120" metaid="R_G3PAT120" name="Glycerol-3-phosphate acyltransferase (C12:0)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_G3PAT120">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/G3PAT120" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.15" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99854" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b1094" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4041" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ddcaACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glyc3p_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_1ddecg3p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ACP_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PGSA120" metaid="R_PGSA120" name="Phosphatidylglycerol synthase (n-C12:0)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PGSA120">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PGSA120" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.8.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102589" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1912" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cdpdddecg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glyc3p_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cmp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pgp120_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_TDSR2" metaid="R_TDSR2" name="Thiol:disulfide reductase (DsbG)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_TDSR2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/TDSR2" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104765" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b0604" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4136" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dsbdrd_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dsbgox_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dsbdox_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dsbgrd_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_GTHRDtex" metaid="R_GTHRDtex"
-      name="Glutathione transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GTHRDtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GTHRDtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100449" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gthrd_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gthrd_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GTHRDabc2pp" metaid="R_GTHRDabc2pp"
-      name="Glutathione export via ABC system (cytoplasm to periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GTHRDabc2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GTHRDabc2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-21" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100447" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29787#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29788#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29789#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29790#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29791#2" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29792#2" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29793#2" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29794#2" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b0886" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0887" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gthrd_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gthrd_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_OMMBLHX3" metaid="R_OMMBLHX3"
-      name="2-Octaprenyl-3-methyl-6-methoxy-1,4-benzoquinol hydroxylase (anaerobic)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_OMMBLHX3">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/OMMBLHX3" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102188" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2ommbl_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="3" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nad_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2omhmbl_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="3" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadh_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="2" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NADHPO" metaid="R_NADHPO" name="NADH peroxidase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NADHPO">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NADHPO" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:NADH-PEROXIDASE-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.11.1.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00090" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101879" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18509" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18510" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18511" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18512" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b0606" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0605" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadh_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nad_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ACOAD7f" metaid="R_ACOAD7f" name="Acyl-CoA dehydrogenase (hexadecanoyl-CoA)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ACOAD7f">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ACOAD7f" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.3.3.6" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.3.8.7" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.3.8.8" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.3.8.9" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.3.99.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.3.99.3" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01279" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95301" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30747" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30748" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30749" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30750" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/43448" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/43449" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/43450" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/43451" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0221" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fad_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pmtcoa_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fadh2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_hdd2coa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ACOAD8f" metaid="R_ACOAD8f" name="Acyl-CoA dehydrogenase (octadecanoyl-CoA)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ACOAD8f">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ACOAD8f" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95317" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/40843" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/40844" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/40845" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/40846" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/47240" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/47241" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/47242" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/47243" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0221" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fad_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_stcoa_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fadh2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_od2coa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ACOAD5f" metaid="R_ACOAD5f" name="Acyl-CoA dehydrogenase (dodecanoyl-CoA)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ACOAD5f">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ACOAD5f" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.3.3.6" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.3.8.7" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.3.8.8" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.3.99.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.3.99.3" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R03857" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95299" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/31039" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/31040" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/31041" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/31042" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/47296" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/47297" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/47298" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/47299" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0221" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ddcacoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fad_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dd2coa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fadh2_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ACOAD3f" metaid="R_ACOAD3f" name="Acyl-CoA dehydrogenase (octanoyl-CoA)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ACOAD3f">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ACOAD3f" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.3.3.6" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.3.8.7" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.3.8.8" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.3.99.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.3.99.3" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R03777" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95304" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30943" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30944" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30945" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30946" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/48180" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/48181" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/48182" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/48183" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0221" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fad_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_occoa_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fadh2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_oc2coa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ACOAD2f" metaid="R_ACOAD2f" name="Acyl-CoA dehydrogenase (hexanoyl-CoA)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ACOAD2f">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ACOAD2f" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.3.99.3" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95303" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0221" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fad_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_hxcoa_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fadh2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_hx2coa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ACOAD4f" metaid="R_ACOAD4f" name="Acyl-CoA dehydrogenase (decanoyl-CoA)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ACOAD4f">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ACOAD4f" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.3.99.3" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95298" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0221" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dcacoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fad_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dc2coa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fadh2_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ACOAD6f" metaid="R_ACOAD6f" name="Acyl-CoA dehydrogenase (tetradecanoyl-CoA)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ACOAD6f">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ACOAD6f" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.3.3.6" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.3.8.7" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.3.8.8" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.3.8.9" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.3.99.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.3.99.3" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R03990" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95300" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28358" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28359" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28360" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28361" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/47316" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/47317" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/47318" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/47319" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0221" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fad_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_tdcoa_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fadh2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_td2coa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NADH16pp" metaid="R_NADH16pp"
-      name="NADH dehydrogenase (ubiquinone-8 &amp; 3 protons) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NADH16pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NADH16pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.6.5.3" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101864" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b2280" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2281" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2287" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2288" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2282" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2277" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2279" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2284" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2278" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2276" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2283" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2286" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2285" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="4" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadh_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_q8_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="3" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nad_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_q8h2_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NADH18pp" metaid="R_NADH18pp"
-      name="NADH dehydrogenase (demethylmenaquinone-8 &amp; 3 protons) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NADH18pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NADH18pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.6.5.3" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101866" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b2280" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2281" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2287" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2288" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2282" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2277" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2279" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2284" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2278" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2276" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2283" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2286" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2285" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2dmmq8_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="4" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadh_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2dmmql8_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="3" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nad_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_tartr__D_e" metaid="R_EX_tartr__D_e" name="D-tartrate exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_tartr__D_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/tartr__D" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_tartr__D_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GLYBt2pp" metaid="R_GLYBt2pp"
-      name="Glycine betaine transport via proton symport (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLYBt2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLYBt2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-29A" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100315" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1801" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4111" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glyb_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glyb_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DSERt2pp" metaid="R_DSERt2pp" name="D-serine transport in via proton symport (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DSERt2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DSERt2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-5130" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97798" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4208" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ser__D_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ser__D_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ALAt4pp" metaid="R_ALAt4pp" name="L-alanine transport in via sodium symport (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ALAt4pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ALAt4pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-125" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95692" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29283" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29284" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29285" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29286" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0007" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ala__L_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_na1_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ala__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_na1_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LYSt3pp" metaid="R_LYSt3pp"
-      name="L-lysine transport out via proton antiport (cytoplasm to periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LYSt3pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LYSt3pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101267" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2923" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0874" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_lys__L_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_lys__L_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_EX_tungs_e" metaid="R_EX_tungs_e" name="Tungstate exchange" reversible="true"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_tungs_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/tungs" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_tungs_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CTBTCAL2" metaid="R_CTBTCAL2" name="Crotonobetaine-CoA Ligase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CTBTCAL2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CTBTCAL2" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96937" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30079" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30080" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30081" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30082" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0037" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_coa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ctbt_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ctbtcoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_BGLA1" metaid="R_BGLA1" name="6-phospho-beta-glucosidase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_BGLA1">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/BGLA1" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96242" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2716" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1734" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3721" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_6pgg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_g6p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glc__D_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_crn__D_e" metaid="R_EX_crn__D_e" name="D-carnitine exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_crn__D_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/crn__D" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_crn__D_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GDPMNP" metaid="R_GDPMNP" name="GDP-mannose phyrophosphatase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GDPMNP">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GDPMNP" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-5108" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.21" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00881" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100092" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27978" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27979" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27980" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27981" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2467" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gdpmann_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gmp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_man1p_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_OPHHX3" metaid="R_OPHHX3" name="2-Octaprenylphenol hydroxylase (anaerobic)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_OPHHX3">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/OPHHX3" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102204" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2oph_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="3" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nad_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2ohph_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="3" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadh_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="2" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_AMMQLT8" metaid="R_AMMQLT8"
-      name="S-adenosylmethione:2-demthylmenaquinole methyltransferase (menaquinone 8)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_AMMQLT8">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/AMMQLT8" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:ADOMET-DMK-METHYLTRANSFER-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.1.1.163" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95819" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30063" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30064" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30065" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30066" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3833" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2dmmql8_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_amet_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ahcys_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_mql8_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FA120ACPHi" metaid="R_FA120ACPHi" name="Fatty-acyl-ACP hydrolase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FA120ACPHi">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FA120ACPHi" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.2.21" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99087" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0404" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ddcaACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ddca_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FA80ACPHi" metaid="R_FA80ACPHi" name="Fatty-acyl-ACP hydrolase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FA80ACPHi">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FA80ACPHi" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.2.21" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99125" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0404" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ocACP_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_octa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FA140ACPHi" metaid="R_FA140ACPHi" name="Fatty-acyl-ACP hydrolase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FA140ACPHi">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FA140ACPHi" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.2.14" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99089" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0404" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_myrsACP_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ttdca_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FA100ACPHi" metaid="R_FA100ACPHi" name="Fatty-acyl-ACP hydrolase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FA100ACPHi">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FA100ACPHi" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.2.21" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99086" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0404" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dcaACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dca_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CRNDCAL2" metaid="R_CRNDCAL2" name="D-Carnitine-CoA Ligase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CRNDCAL2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CRNDCAL2" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96901" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30543" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30544" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30545" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30546" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0037" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_coa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_crn__D_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_crnDcoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CRNCAL2" metaid="R_CRNCAL2" name="Carnitine-CoA Ligase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CRNCAL2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CRNCAL2" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96895" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0037" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_coa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_crn_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_crncoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CHLt2pp" metaid="R_CHLt2pp" name="Choline transport via proton symport (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CHLt2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CHLt2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-99" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96692" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28843" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28844" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28845" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28846" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0314" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1801" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_chol_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_chol_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GLYt4pp" metaid="R_GLYt4pp" name="Glycine transport in via sodium symport (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLYt4pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLYt4pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100351" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0007" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gly_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_na1_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gly_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_na1_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_FRULYSE" metaid="R_FRULYSE" name="Fructoselysine 3-epimerase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FRULYSE">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FRULYSE" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-4841" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99654" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28390" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28391" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28392" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28393" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4474" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_psclys_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_frulys_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FRULYSt2pp" metaid="R_FRULYSt2pp"
-      name="Fructoselysine transport via proton symport (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FRULYSt2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FRULYSt2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99656" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3370" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_frulys_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_frulys_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_psclys_e" metaid="R_EX_psclys_e" name="Psicoselysine exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_psclys_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/psclys" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_psclys_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_TUNGStex" metaid="R_TUNGStex"
-      name="Tungstate transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_TUNGStex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/TUNGStex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104979" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/32839" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/32840" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/32841" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/32842" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_tungs_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_tungs_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_COBALT2tpp" metaid="R_COBALT2tpp" name="Cobalt transport in via permease (no H+)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_COBALT2tpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/COBALT2tpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-141A" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96821" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28578" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28579" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28580" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28581" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b3040" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3816" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cobalt2_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cobalt2_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_OXCDC" metaid="R_OXCDC" name="Oxalyl-CoA decarboxylase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_OXCDC">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/OXCDC" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:OXALYL-COA-DECARBOXYLASE-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.1.1.8" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01908" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102239" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19333" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19334" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19335" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19336" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2373" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_oxalcoa_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_forcoa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LPLIPAL2A140" metaid="R_LPLIPAL2A140"
-      name="Lysophospholipase L2 (2-acylglycerophosphotidate, n-C14:0)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LPLIPAL2A140">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LPLIPAL2A140" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.1.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101163" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3825" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2tdecg3p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glyc3p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ttdca_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LPLIPAL2A160" metaid="R_LPLIPAL2A160"
-      name="Lysophospholipase L2 (2-acylglycerophosphotidate, n-C16:0)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LPLIPAL2A160">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LPLIPAL2A160" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.1.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101165" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3825" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2hdecg3p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glyc3p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_hdca_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LPLIPAL2A161" metaid="R_LPLIPAL2A161"
-      name="Lysophospholipase L2 (2-acylglycerophosphotidate, n-C16:1)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LPLIPAL2A161">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LPLIPAL2A161" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101166" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3825" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2hdec9eg3p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glyc3p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_hdcea_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LPLIPAL2A180" metaid="R_LPLIPAL2A180"
-      name="Lysophospholipase L2 (2-acylglycerophosphotidate, n-C18:0)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LPLIPAL2A180">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LPLIPAL2A180" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.1.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101167" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3825" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2odecg3p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glyc3p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ocdca_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LPLIPAL2A181" metaid="R_LPLIPAL2A181"
-      name="Lysophospholipase L2 (2-acylglycerophosphotidate, n-C18:1)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LPLIPAL2A181">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LPLIPAL2A181" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101168" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3825" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2odec11eg3p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glyc3p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ocdcea_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DM_aacald_c" metaid="R_DM_aacald_c"
-      name="Sink needed to allow aminoacetaldehyde to leave system" reversible="false" sboTerm="SBO:0000628">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DM_aacald_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/aacald" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_aacald_c" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_UM3PL" metaid="R_UM3PL"
-      name="UDP-N-acetylmuramate:L-alanyl-gamma-D-glutamyl-meso-diaminopimelate ligase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_UM3PL">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/UM3PL" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105115" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4233" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_LalaDgluMdap_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_uamr_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ugmd_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_UM4PL" metaid="R_UM4PL"
-      name="UDP-N-acetylmuramate:L-alanyl-gamma-D-glutamyl-meso-diaminopimelate-D-alanine ligase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_UM4PL">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/UM4PL" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105117" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4233" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_LalaDgluMdapDala_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_uamr_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_um4p_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_2MAHMP" metaid="R_2MAHMP" name="2-Methyl-4-amino-5-hydroxymethylpyrimidine diphosphatase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_2MAHMP">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/2MAHMP" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-3543" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.1.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94806" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27914" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27915" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27916" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27917" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0446" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1134" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2mahmp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_4ampm_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ZN2tpp" metaid="R_ZN2tpp" name="Zinc transport in via permease (no H+)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ZN2tpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ZN2tpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-12" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105280" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29351" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29352" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29353" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29354" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3040" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_zn2_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_zn2_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NI2tpp" metaid="R_NI2tpp" name="Nickel (+2) transport in via permease (no H+)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NI2tpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NI2tpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-141B" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101958" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29831" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29832" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29833" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29834" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3816" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ni2_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ni2_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_COBALT2t3pp" metaid="R_COBALT2t3pp"
-      name="Cobalt (Co+2) transport out via proton antiport (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_COBALT2t3pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/COBALT2t3pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96820" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0752" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3915" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cobalt2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cobalt2_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_23DAPPAt2pp" metaid="R_23DAPPAt2pp"
-      name="2,3-diaminopropionate transport in via proton symport" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_23DAPPAt2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/23DAPPAt2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94727" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_23dappa_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_23dappa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PLIPA1A120pp" metaid="R_PLIPA1A120pp"
-      name="Phospholipase A1 (phosphatidate, n-C12:0) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PLIPA1A120pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PLIPA1A120pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.1.32" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102967" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3821" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pa120_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2ddecg3p_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ddca_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PLIPA1A140pp" metaid="R_PLIPA1A140pp"
-      name="Phospholipase A1 (phosphatidate, n-C14:0) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PLIPA1A140pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PLIPA1A140pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.1.32" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102968" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3821" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pa140_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2tdecg3p_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ttdca_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PLIPA1A141pp" metaid="R_PLIPA1A141pp"
-      name="Phospholipase A1 (phosphatidate, n-C14:1) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PLIPA1A141pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PLIPA1A141pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.1.32" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102969" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3821" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pa141_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2tdec7eg3p_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ttdcea_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PLIPA1A160pp" metaid="R_PLIPA1A160pp"
-      name="Phospholipase A1 (phosphatidate, n-C16:0) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PLIPA1A160pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PLIPA1A160pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.1.32" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102970" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3821" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pa160_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2hdecg3p_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_hdca_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PLIPA1A161pp" metaid="R_PLIPA1A161pp"
-      name="Phospholipase A1 (phosphatidate, n-C16:1) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PLIPA1A161pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PLIPA1A161pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102971" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3821" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pa161_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2hdec9eg3p_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_hdcea_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PLIPA1A180pp" metaid="R_PLIPA1A180pp"
-      name="Phospholipase A1 (phosphatidate, n-C18:0) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PLIPA1A180pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PLIPA1A180pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.1.32" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102972" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3821" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pa180_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2odecg3p_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ocdca_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LPLIPAL2A120" metaid="R_LPLIPAL2A120"
-      name="Lysophospholipase L2 (2-acylglycerophosphotidate, n-C12:0)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LPLIPAL2A120">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LPLIPAL2A120" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.1.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101162" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3825" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2ddecg3p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ddca_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glyc3p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_CAt6pp" metaid="R_CAt6pp" name="Calcium / sodium antiporter (1:1)" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CAt6pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CAt6pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96460" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29255" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29256" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29257" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29258" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3196" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ca2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_na1_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ca2_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_na1_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_5DGLCNt2rpp" metaid="R_5DGLCNt2rpp"
-      name="5-Dehydro-D-gluconate transport via proton symport, reversible (periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_5DGLCNt2rpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/5DGLCNt2rpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-228" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95066" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28819" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28820" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28821" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28822" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4265" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_5dglcn_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_5dglcn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GALCTNt2pp" metaid="R_GALCTNt2pp"
-      name="D-galactonate transport via proton symport (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GALCTNt2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GALCTNt2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-16" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99960" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29835" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29836" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29837" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29838" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3691" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_galctn__D_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_galctn__D_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_GALCTNLtex" metaid="R_GALCTNLtex"
-      name="L-galactonate transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GALCTNLtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GALCTNLtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99959" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_galctn__L_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_galctn__L_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_galctn__L_e" metaid="R_EX_galctn__L_e" name="L-Galactonate exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_galctn__L_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/galctn__L" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_galctn__L_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_KDUI" metaid="R_KDUI" name="5-keto-4-deoxyuronate isomerase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_KDUI">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/KDUI" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2843" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dt5hsu_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dkdglcn_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CA2t3pp" metaid="R_CA2t3pp"
-      name="Calcium (Ca+2) transport out via proton antiport (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CA2t3pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CA2t3pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96437" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1216" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ca2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ca2_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NADH17pp" metaid="R_NADH17pp"
-      name="NADH dehydrogenase (menaquinone-8 &amp; 3 protons) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NADH17pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NADH17pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.6.5.3" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101865" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b2280" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2281" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2287" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2288" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2282" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2277" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2279" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2284" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2278" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2276" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2283" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2286" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2285" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="4" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mqn8_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadh_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="3" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_mql8_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nad_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FA161ACPHi" metaid="R_FA161ACPHi" name="Fatty-acyl-ACP hydrolase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FA161ACPHi">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FA161ACPHi" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.2.14" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99103" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0404" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_hdeACP_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_hdcea_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FA141ACPHi" metaid="R_FA141ACPHi" name="Fatty-acyl-ACP hydrolase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FA141ACPHi">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FA141ACPHi" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.2.14" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99093" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0404" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_tdeACP_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ttdcea_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ARGt3pp" metaid="R_ARGt3pp"
-      name="L-arginine transport out via proton antiport (cytoplasm to periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ARGt3pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ARGt3pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95954" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2923" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_arg__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_arg__L_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FA160ACPHi" metaid="R_FA160ACPHi" name="Fatty-acyl-ACP hydrolase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FA160ACPHi">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FA160ACPHi" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.2.14" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99097" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0404" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_palmACP_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_hdca_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_MALDtex" metaid="R_MALDtex"
-      name="D-Malate transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MALDtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MALDtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101341" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mal__D_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_mal__D_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_OROTtex" metaid="R_OROTtex"
-      name="Orotate transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_OROTtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/OROTtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102230" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_orot_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_orot_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PPAt4pp" metaid="R_PPAt4pp" name="Na+/Propionate symporter (periplasm)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PPAt4pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PPAt4pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103093" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1015" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_na1_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ppa_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_na1_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_OROTt2_2pp" metaid="R_OROTt2_2pp"
-      name="Orotate transport via proton symport (2 H) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_OROTt2_2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/OROTt2_2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-121C" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102229" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29347" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29348" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29349" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29350" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3528" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_orot_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_orot_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MALDt2_2pp" metaid="R_MALDt2_2pp"
-      name="D-Malate transport via proton symport (2 H) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MALDt2_2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MALDt2_2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-451" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101340" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28715" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28716" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28717" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28718" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3528" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mal__D_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_mal__D_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_5DGLCNtex" metaid="R_5DGLCNtex"
-      name="5-Dehydro-D-gluconate transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_5DGLCNtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/5DGLCNtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95067" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_5dglcn_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_5dglcn_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_5dglcn_e" metaid="R_EX_5dglcn_e" name="5-Dehydro-D-gluconate exchange"
-      reversible="false" sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_5dglcn_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/5dglcn" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_5dglcn_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DTARTD" metaid="R_DTARTD" name="D(-)-tartrate dehydratase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DTARTD">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DTARTD" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:D--TARTRATE-DEHYDRATASE-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.81" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00340" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97802" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18289" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18290" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18291" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18292" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4122" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_tartr__D_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_oaa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PLIPA2E161pp" metaid="R_PLIPA2E161pp"
-      name="Phospholipase A2 (phosphatidylethanolamine, n-C16:1) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PLIPA2E161pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PLIPA2E161pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103000" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3821" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pe161_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_1agpe161_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_hdcea_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PLIPA2E180pp" metaid="R_PLIPA2E180pp"
-      name="Phospholipase A2 (phosphatidylethanolamine, n-C18:0) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PLIPA2E180pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PLIPA2E180pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103001" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3821" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pe180_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_1agpe180_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ocdca_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PLIPA2G120pp" metaid="R_PLIPA2G120pp"
-      name="Phospholipase A2 (phosphatidylglycerol, n-C12:0) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PLIPA2G120pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PLIPA2G120pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103003" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3821" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pg120_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_1agpg120_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ddca_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PLIPA2G180pp" metaid="R_PLIPA2G180pp"
-      name="Phospholipase A2 (phosphatidylglycerol, n-C18:0) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PLIPA2G180pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PLIPA2G180pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103008" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3821" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pg180_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_1agpg180_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ocdca_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LPLIPAL1A161pp" metaid="R_LPLIPAL1A161pp"
-      name="Lysophospholipase L1 (2-acylglycerophosphotidate, n-C16:1) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LPLIPAL1A161pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LPLIPAL1A161pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101145" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0494" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_1hdec9eg3p_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glyc3p_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_hdcea_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LPLIPAL1A160pp" metaid="R_LPLIPAL1A160pp"
-      name="Lysophospholipase L1 (2-acylglycerophosphotidate, n-C16:0) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LPLIPAL1A160pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LPLIPAL1A160pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.1.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101144" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0494" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_1hdecg3p_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glyc3p_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_hdca_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PSCLYSt2pp" metaid="R_PSCLYSt2pp"
-      name="Psicoselysine transport via proton symport (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PSCLYSt2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PSCLYSt2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103227" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3370" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_psclys_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_psclys_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LYSt2pp" metaid="R_LYSt2pp" name="L-lysine transport in via proton symport (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LYSt2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LYSt2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-58" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101266" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28911" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28912" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28913" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28914" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2156" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_lys__L_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_lys__L_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GLYt2pp" metaid="R_GLYt2pp" name="Glycine transport in via proton symport (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLYt2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLYt2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-62B" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100368" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28899" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28900" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28901" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28902" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1801" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4208" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gly_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gly_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ALAt2pp" metaid="R_ALAt2pp" name="L-alanine transport in via proton symport (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ALAt2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ALAt2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-5202" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95704" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29443" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29444" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29445" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29446" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b4208" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4130" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ala__L_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ala__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_BALAt2pp" metaid="R_BALAt2pp"
-      name="Beta-alanine transport in via proton symport (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_BALAt2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/BALAt2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-5201" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96212" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29459" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29460" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29461" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29462" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4208" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ala_B_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ala_B_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DALAt2pp" metaid="R_DALAt2pp" name="D-alanine transport in via proton symport (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DALAt2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DALAt2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-62A" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97135" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28903" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28904" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28905" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28906" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4208" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ala__D_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ala__D_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FE2tpp" metaid="R_FE2tpp" name="Iron (+2) transport in via permease (no H+)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FE2tpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FE2tpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-8" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99505" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28486" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28487" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28488" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28489" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3040" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fe2_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fe2_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MN2tpp" metaid="R_MN2tpp" name="Manganese transport in via permease (no H+)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MN2tpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MN2tpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-16" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-487" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101670" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28699" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28700" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28701" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28702" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3040" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mn2_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_mn2_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MG2tpp" metaid="R_MG2tpp" name="Magnesium (+2) transport in via diffusion"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MG2tpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MG2tpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-141" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101507" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29827" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29828" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29829" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29830" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3816" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mg2_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_mg2_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NI2t3pp" metaid="R_NI2t3pp"
-      name="Nickle (Ni+2) transport out via proton antiport (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NI2t3pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NI2t3pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101956" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b3915" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0752" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ni2_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ni2_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_PPAtex" metaid="R_PPAtex" name="Propionate transport via diffusion" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PPAtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PPAtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103094" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ppa_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppa_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GALCTNLt2pp" metaid="R_GALCTNLt2pp"
-      name="L-galactonate transport via proton symport (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GALCTNLt2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GALCTNLt2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-227" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99958" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28823" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28824" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28825" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28826" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4356" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_galctn__L_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_galctn__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GALCTLO" metaid="R_GALCTLO" name="L-galactonate oxidoreductase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GALCTLO">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GALCTLO" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-5229" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.M8" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99956" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30183" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30184" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30185" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30186" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4358" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_galctn__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nad_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadh_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_tagur_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_THYMt3pp" metaid="R_THYMt3pp" name="Thymine transport out via proton antiport (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_THYMt3pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/THYMt3pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104854" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_thym_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_thym_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_PSCLYStex" metaid="R_PSCLYStex"
-      name="Psicoselysine transporter via diffusion (extracellular)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PSCLYStex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PSCLYStex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-418" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103228" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28450" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28451" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28452" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28453" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_psclys_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_psclys_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_THYMtex" metaid="R_THYMtex"
-      name="Thymine transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_THYMtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/THYMtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-524" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104853" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_thym_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_thym_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CU2tpp" metaid="R_CU2tpp" name="Copper transport in via permease (no H+)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CU2tpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CU2tpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-14" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96951" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28703" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28704" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28705" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28706" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3040" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cu2_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cu2_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FE2t3pp" metaid="R_FE2t3pp"
-      name="Iron (Fe+2) transport out via proton antiport (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FE2t3pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FE2t3pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-6" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99506" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29439" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29440" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29441" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29442" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3915" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fe2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fe2_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MN2t3pp" metaid="R_MN2t3pp"
-      name="Manganese (Mn+2) transport out via proton antiport (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MN2t3pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MN2t3pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101669" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b3915" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0752" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mn2_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_mn2_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_MG2t3_2pp" metaid="R_MG2t3_2pp"
-      name="Magnesium (Mg+2) transport in/out via proton antiport (periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MG2t3_2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MG2t3_2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101508" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mg2_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_mg2_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CD2tpp" metaid="R_CD2tpp" name="Cadmium (+2) transport in via permease (no H+)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CD2tpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CD2tpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-10" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96499" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28707" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28708" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28709" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28710" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3040" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cd2_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cd2_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ETHAt2pp" metaid="R_ETHAt2pp" name="Ethanolamine transport in via proton symport"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ETHAt2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ETHAt2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97975" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_etha_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_etha_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FE3abcpp" metaid="R_FE3abcpp"
-      name="Iron (III) transport via ABC system (periplasm to cytoplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FE3abcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FE3abcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:3.6.3.30-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.6.3.30" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99525" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12332#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12333#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12334#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12335#1" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fe3_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fe3_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_THRA" metaid="R_THRA" name="Threonine aldolase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_THRA">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/THRA" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:THREONINE-ALDOLASE-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.1.2.48" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.1.2.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00751" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104833" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19625" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19626" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19627" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19628" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2551" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0870" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_thr__L_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_acald_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gly_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_XYLK2" metaid="R_XYLK2" name="L-xylulokinase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_XYLK2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/XYLK2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:LYXK-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.1.53" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01901" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105256" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18869" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18870" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18871" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/18872" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0063" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3580" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_xylu__L_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_xu5p__L_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GLDBRAN2" metaid="R_GLDBRAN2" name="Glycogen debranching enzyme (bglycogen -&gt; glycogen)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLDBRAN2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLDBRAN2" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.4.1.18" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100155" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3431" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_bglycogen_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glycogen_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CLt3_2pp" metaid="R_CLt3_2pp"
-      name="Chloride transport out via proton antiport (2:1) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CLt3_2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CLt3_2pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-2501" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96796" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29567" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29568" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29569" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29570" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0155" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cl_p" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cl_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_ppal_e" metaid="R_EX_ppal_e" name="Propanal exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_ppal_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ppal" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ppal_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_POR5" metaid="R_POR5" name="Pyruvate synthase" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_POR5">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/POR5" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103064" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b1378" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0684" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b1378" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2895" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_coa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_flxso_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pyr_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_accoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_flxr_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_HACD8" metaid="R_HACD8"
-      name="3-hydroxyacyl-CoA dehydrogenase (3-oxooctadecanoyl-CoA), peroxisomal" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_HACD8">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/HACD8" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.35" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100549" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b3846" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2341" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3ohodcoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadh_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3hodcoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nad_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_CTECOAI8" metaid="R_CTECOAI8" name="3-cis-2-trans-enoyl-CoA isomerase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CTECOAI8">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CTECOAI8" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/5.3.3.8" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96942" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3846" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_odecoa_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_od2coa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_CTECOAI6" metaid="R_CTECOAI6" name="3-cis-2-trans-enoyl-CoA isomerase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CTECOAI6">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CTECOAI6" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/5.3.3.8" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96940" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3846" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_tdecoa_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_td2coa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MTHTHFSs" metaid="R_MTHTHFSs"
-      name="(2R,4S)-2-methyl-2,3,3,4-tetrahydroxytetrahydrofuran synthesis (spontaneous)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MTHTHFSs">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MTHTHFSs" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-10017" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101756" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35159" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35160" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35161" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35162" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_s0001" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mdhdhf_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_mththf_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_SELGTHR" metaid="R_SELGTHR" name="Selenate glutathione reductase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_SELGTHR">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/SELGTHR" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-12864" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R09367" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104318" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34903" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34904" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34905" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34906" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gthrd_c" stoichiometry="4" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_slnt_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dgslnt_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gthox_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="3" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_SELGTHR3" metaid="R_SELGTHR3" name="Selenate glutathione reductase III" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_SELGTHR3">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/SELGTHR3" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104320" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gslnt_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gthrd_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_seln_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_EX_slnt_e" metaid="R_EX_slnt_e" name="Selenite exchange" reversible="true"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_slnt_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/slnt" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_slnt_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MALCOAMT" metaid="R_MALCOAMT" name="Malonyl-CoA methyltransferase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MALCOAMT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MALCOAMT" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101337" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34899" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34900" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34901" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34902" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0777" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_amet_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_malcoa_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ahcys_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_malcoame_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_OGMEACPS" metaid="R_OGMEACPS" name="3-Oxo-glutaryl-[ACP] methyl ester synthase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_OGMEACPS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/OGMEACPS" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102161" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1091" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_malACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_malcoame_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_coa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ogmeACP_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_OGMEACPR" metaid="R_OGMEACPR" name="3-Oxo-glutaryl-[ACP] methyl ester reductase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_OGMEACPR">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/OGMEACPR" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102160" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1093" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ogmeACP_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_hgmeACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_OPMEACPS" metaid="R_OPMEACPS" name="3-Oxo-pimeloyl-[ACP] methyl ester synthase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_OPMEACPS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/OPMEACPS" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102208" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2323" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gmeACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_malACP_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_opmeACP_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LIPAabctex" metaid="R_LIPAabctex"
-      name="Lipid A transport via ABC system (periplasm to extracellular)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LIPAabctex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LIPAabctex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101083" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b0054" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3201" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4261" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4262" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3199" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3200" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0641" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_lipa_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_lipa_e" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DGUNC" metaid="R_DGUNC" name="Diguanylate cyclase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DGUNC">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DGUNC" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97353" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1025" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1794" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1341" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1535" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1490" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gtp_c" stoichiometry="2" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cdigmp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="2" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CDGUNPD" metaid="R_CDGUNPD" name="3,5-cyclic-nucleotide phosphodiesterase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CDGUNPD">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CDGUNPD" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96524" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1285" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1489" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2503" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3525" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0315" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cdigmp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_5pg35pg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LDGUNPD" metaid="R_LDGUNPD" name="Linear diguanylate phosphodiesterase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LDGUNPD">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LDGUNPD" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101036" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1285" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_5pg35pg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gmp_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MPTAT" metaid="R_MPTAT" name="Molybdopterin adenylyltransferase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MPTAT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MPTAT" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-8344" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.7.75" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R09726" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101730" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/31331" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/31332" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/31333" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/31334" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0009" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mpt_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_mptamp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MOADSUx" metaid="R_MOADSUx" name="MoaD sulfuration (nadh, assumed)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MOADSUx">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MOADSUx" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101682" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b0784" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2530" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_iscssh_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_moadamp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadh_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_amp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_iscs_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_moadcosh_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nad_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CMtpp" metaid="R_CMtpp" name="Chloramphenicol transport via TolC system" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CMtpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CMtpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96809" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b3035" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0463" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2470" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b3035" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0463" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0462" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cm_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cm_e" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FUSAtpp" metaid="R_FUSAtpp" name="Fusidic acid transport via TolC system"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FUSAtpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FUSAtpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99718" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b3035" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0463" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0462" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b3035" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0463" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2470" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fusa_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fusa_e" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_RFAMPtex" metaid="R_RFAMPtex"
-      name="Rifampin transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_RFAMPtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/RFAMPtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104014" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35231" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35232" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35233" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35234" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_s0001" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_rfamp_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_rfamp_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_MINCYCtex" metaid="R_MINCYCtex"
-      name="Minocycline transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MINCYCtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MINCYCtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101582" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35167" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35168" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35169" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35170" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mincyc_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_mincyc_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MINCYCtpp" metaid="R_MINCYCtpp" name="Minocycline transport via TolC system"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MINCYCtpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MINCYCtpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101583" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b3035" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0463" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2470" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b3035" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0463" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0462" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mincyc_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_mincyc_e" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_DOXRBCNtex" metaid="R_DOXRBCNtex"
-      name="Doxorubicin transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DOXRBCNtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DOXRBCNtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97760" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35079" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35080" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35081" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35082" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_doxrbcn_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_doxrbcn_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DOXRBCNtpp" metaid="R_DOXRBCNtpp" name="Doxorubicin transport via TolC system"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DOXRBCNtpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DOXRBCNtpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97761" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b3035" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0463" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0462" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b3035" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0463" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2470" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_doxrbcn_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_doxrbcn_e" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ETOHtrpp" metaid="R_ETOHtrpp"
-      name="Ethanol reversible transport via diffusion (periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ETOHtrpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ETOHtrpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-546" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97980" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35267" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35268" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35269" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35270" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_s0001" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_etoh_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_etoh_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_REPHACCOAI" metaid="R_REPHACCOAI"
-      name="Ring 1,2-epoxyphenylacetyl-CoA isomerase (oxepin-CoA forming)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_REPHACCOAI">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/REPHACCOAI" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103993" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1394" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_rephaccoa_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2oxpaccoa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ACPPAT141" metaid="R_ACPPAT141"
-      name="Acyl-(acyl carrier protein):phosphate acyltransferase (C14:1)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ACPPAT141">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ACPPAT141" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95397" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b1094" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1090" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_tdeACP_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ttdceap_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ACPPAT161" metaid="R_ACPPAT161"
-      name="Acyl-(acyl carrier protein):phosphate acyltransferase (C16:1)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ACPPAT161">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ACPPAT161" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95399" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b1094" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1090" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_hdeACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pi_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_hdceap_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ACPPAT180" metaid="R_ACPPAT180"
-      name="Acyl-(acyl carrier protein):phosphate acyltransferase (C18:0)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ACPPAT180">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ACPPAT180" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95400" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b1094" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1090" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ocdcaACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pi_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ocdcap_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_APG3PAT160" metaid="R_APG3PAT160"
-      name="Acyl-phosphate:glycerol-3-phosphate acyltransferase (C16:0)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_APG3PAT160">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/APG3PAT160" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95872" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3059" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glyc3p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_hdcap_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_1hdecg3p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_APG3PAT161" metaid="R_APG3PAT161"
-      name="Acyl-phosphate:glycerol-3-phosphate acyltransferase (C16:1)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_APG3PAT161">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/APG3PAT161" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95873" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3059" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glyc3p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_hdceap_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_1hdec9eg3p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_APG3PAT180" metaid="R_APG3PAT180"
-      name="Acyl-phosphate:glycerol-3-phosphate acyltransferase (C18:0)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_APG3PAT180">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/APG3PAT180" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95874" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3059" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glyc3p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ocdcap_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_1odecg3p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ICYSDS" metaid="R_ICYSDS" name="ISC Cysteine desulfuration" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ICYSDS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ICYSDS" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100790" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2530" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cys__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_iscs_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ala__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_iscssh_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_I4FE4SR" metaid="R_I4FE4SR" name="ISC [4Fe-4S] Reduction" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_I4FE4SR">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/I4FE4SR" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100770" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2529" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fadh2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_iscu_2fe2s2_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fad_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_iscu_4fe4s_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_S2FE2ST" metaid="R_S2FE2ST" name="SUF [2Fe-2S] Transfer" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_S2FE2ST">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/S2FE2ST" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104152" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b1684" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1682" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1681" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1683" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="4" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_sufbcd_2fe2s_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2fe2s_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_sufbcd_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_BMOCOS" metaid="R_BMOCOS" name="Bis-molybdenum cofactor synthase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_BMOCOS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/BMOCOS" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96314" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0827" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_moco_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mptamp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_amp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_bmoco_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cu2_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_BWCOS" metaid="R_BWCOS" name="Tungsten bispterin cofactor synthase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_BWCOS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/BWCOS" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96358" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0827" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mptamp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_wco_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_amp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_bwco_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cu2_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_BWCOGDS1" metaid="R_BWCOGDS1"
-      name="Tungsten bispterin guanine dinucleotide synthase (single GDP)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_BWCOGDS1">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/BWCOGDS1" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96356" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b3857" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3856" />
-            </fbc:and>
-            <fbc:geneProductRef fbc:geneProduct="G_b3857" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_bwco_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gtp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_bwco1gdp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_BWCOGDS2" metaid="R_BWCOGDS2" name="Tungsten bispterin guanine dinucleotide synthase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_BWCOGDS2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/BWCOGDS2" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96357" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b3857" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3856" />
-            </fbc:and>
-            <fbc:geneProductRef fbc:geneProduct="G_b3857" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_bwco1gdp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gtp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_bwcogdp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_DHNPTE" metaid="R_DHNPTE" name="Dihydroneopterin epimerase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DHNPTE">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DHNPTE" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97416" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3058" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dhnpt_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dhmpt_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DHMPTR" metaid="R_DHMPTR" name="Dihydromonapterin reductase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DHMPTR">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DHMPTR" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97405" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1606" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dhmpt_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_thmnp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NOVBCNtpp" metaid="R_NOVBCNtpp" name="Novobiocin transport via TolC system"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NOVBCNtpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NOVBCNtpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102009" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b3035" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0463" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2470" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b3035" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0463" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0462" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_novbcn_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_novbcn_e" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_CMtex" metaid="R_CMtex"
-      name="Chloramphenicol transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CMtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CMtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96808" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35287" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35288" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35289" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35290" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cm_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cm_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_LALALGLUtex" metaid="R_LALALGLUtex"
-      name="L-alanyl-L-glutamate transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LALALGLUtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LALALGLUtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101005" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35135" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35136" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35137" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35138" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_LalaLglu_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_LalaLglu_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LALADGLUtpp" metaid="R_LALADGLUtpp"
-      name="L-alanyl-D-glutamate transport in via proton symport (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LALADGLUtpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LALADGLUtpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101004" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35123" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35124" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35125" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35126" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b3496" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0709" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1634" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4130" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_LalaDglu_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_LalaDglu_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_I2FE2SS" metaid="R_I2FE2SS" name="ISC [2Fe-2S] Synthesis" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_I2FE2SS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/I2FE2SS" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100767" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b2530" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2529" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fadh2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fe2_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_iscssh_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_iscu_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fad_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="6" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_iscs_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_iscu_2fe2s_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_I2FE2ST" metaid="R_I2FE2ST" name="ISC [2Fe-2S] Transfer" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_I2FE2ST">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/I2FE2ST" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100769" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b2529" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2528" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="4" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_iscu_2fe2s_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2fe2s_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_iscu_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_I2FE2SS2" metaid="R_I2FE2SS2" name="ISC [2Fe-2S] Synthesis II" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_I2FE2SS2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/I2FE2SS2" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100768" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b2530" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2529" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fadh2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fe2_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_iscssh_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_iscu_2fe2s_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fad_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="6" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_iscs_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_iscu_2fe2s2_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_I4FE4ST" metaid="R_I4FE4ST" name="ISC [4Fe-4S] Transfer" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_I4FE4ST">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/I4FE4ST" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100771" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b2529" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2528" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="4" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_iscu_4fe4s_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_4fe4s_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_iscu_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_S4FE4ST" metaid="R_S4FE4ST" name="SUF [4Fe-4S] Transfer" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_S4FE4ST">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/S4FE4ST" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104172" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b1684" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1682" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1681" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1683" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="4" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_sufbcd_4fe4s_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_4fe4s_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_sufbcd_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_S2FE2SS2" metaid="R_S2FE2SS2" name="SUF [2Fe-2S] Synthesis II" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_S2FE2SS2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/S2FE2SS2" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104151" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b1682" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1683" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1680" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1681" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1679" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fadh2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fe2_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_sufbcd_2fe2s_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_sufsesh_c" stoichiometry="2" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fad_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="7" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_sufbcd_2fe2s2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_sufse_c" stoichiometry="2" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_BTS5" metaid="R_BTS5" name="Biotin synthase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_BTS5">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/BTS5" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96344" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0775" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2fe2s_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_amet_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dtbt_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2fe1s_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_btn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dad_5_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_met__L_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_5MTRtex" metaid="R_5MTRtex"
-      name="5-Methylthio-D-ribose transport via proton diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_5MTRtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/5MTRtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-461" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95091" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34955" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34956" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34957" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34958" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_5mtr_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_5mtr_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_LALADGLUtex" metaid="R_LALADGLUtex"
-      name="L-alanyl-D-glutamate transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LALADGLUtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LALADGLUtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101003" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35127" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35128" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35129" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35130" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_LalaDglu_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_LalaDglu_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LALALGLUtpp" metaid="R_LALALGLUtpp"
-      name="L-alanyl-L-glutamate transport in via proton symport (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LALALGLUtpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LALALGLUtpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101006" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35131" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35132" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35133" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35134" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b4130" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1634" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3496" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0709" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_LalaLglu_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_LalaLglu_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_3AMACHYD" metaid="R_3AMACHYD" name="3-aminoacrylate hydrolase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_3AMACHYD">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/3AMACHYD" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-6452" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.5.1.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R09983" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94854" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34947" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34948" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34949" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34950" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1009" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3amac_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_msa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nh4_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_3HPPtex" metaid="R_3HPPtex"
-      name="3-hydroxypropionate transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_3HPPtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/3HPPtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-465" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94904" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34951" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34952" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34953" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34954" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3hpp_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3hpp_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_LalaDglu_e" metaid="R_EX_LalaDglu_e" name="L-alanine-D-glutamate exchange"
-      reversible="false" sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_LalaDglu_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LalaDglu" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_LalaDglu_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CCGS" metaid="R_CCGS" name="7-cyano-7-carbaguanine synthase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CCGS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CCGS" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-12093" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/6.3.4.20" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R09978" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96492" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27982" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27983" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27984" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27985" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0444" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cdg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nh4_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_preq0_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CDGR" metaid="R_CDGR" name="7-cyano-7-deazaguanine reductase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CDGR">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CDGR" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-4022" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.7.1.13" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R07605" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96521" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13409" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13410" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13411" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13412" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2794" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="3" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_preq0_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_preq1_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CBMD" metaid="R_CBMD" name="Carbamate deaminase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CBMD">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CBMD" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-5222" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.5.1.110" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.104" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R07316" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96481" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15649" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15650" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15651" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/15652" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_s0001" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cbm_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="2" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nh4_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MSAR" metaid="R_MSAR" name="Malonic semialdehyde reductase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MSAR">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MSAR" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-8974" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.298" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R09289" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101737" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/26438" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/26439" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/26440" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/26441" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1008" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1539" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_msa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3hpp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_LalaLglu_e" metaid="R_EX_LalaLglu_e" name="L-alanine-L-glutamate exchange"
-      reversible="false" sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_LalaLglu_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LalaLglu" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_LalaLglu_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ACPPAT120" metaid="R_ACPPAT120"
-      name="Acyl-(acyl carrier protein):phosphate acyltransferase (C12:0)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ACPPAT120">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ACPPAT120" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95395" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b1094" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1090" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ddcaACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pi_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ddcap_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CPH4S" metaid="R_CPH4S" name="6-carboxy-5,6,7,8-tetrahydropterin synthase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CPH4S">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CPH4S" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-5507" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.1.2.50" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R09959" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95095" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27966" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27967" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27968" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27969" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2765" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ahdt_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_acald_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cph4_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_SHCHCS3" metaid="R_SHCHCS3"
-      name="2-succinyl-6-hydroxy-2,4-cyclohexadiene 1-carboxylate synthase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_SHCHCS3">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/SHCHCS3" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.99.20" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104372" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2263" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2sephchc_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2shchc_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pyr_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_ttrcyc_e" metaid="R_EX_ttrcyc_e" name="Tetracycline exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_ttrcyc_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ttrcyc" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ttrcyc_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_mincyc_e" metaid="R_EX_mincyc_e" name="Minocycline exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_mincyc_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/mincyc" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mincyc_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DM_4crsol_c" metaid="R_DM_4crsol_c" name="Sink needed to allow p-Cresol to leave system"
-      reversible="false" sboTerm="SBO:0000628">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DM_4crsol_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/4crsol" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_4crsol_c" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_URACPAH" metaid="R_URACPAH" name="Peroxyureidoacrylate hydrolase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_URACPAH">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/URACPAH" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-6460" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.5.1.110" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R09947" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105143" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/31591" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/31592" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/31593" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/31594" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1011" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_uracp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cbm_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_poaac_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_POAACR" metaid="R_POAACR" name="Peroxyaminoacrylate reductase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_POAACR">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/POAACR" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103056" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1010" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadh_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_poaac_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3amac_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nad_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ACPPAT160" metaid="R_ACPPAT160"
-      name="Acyl-(acyl carrier protein):phosphate acyltransferase (C16:0)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ACPPAT160">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ACPPAT160" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95398" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b1094" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1090" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_palmACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pi_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_hdcap_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ACPPAT181" metaid="R_ACPPAT181"
-      name="Acyl-(acyl carrier protein):phosphate acyltransferase (C18:1)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ACPPAT181">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ACPPAT181" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95401" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b1094" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1090" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_octeACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pi_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ocdceap_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_APH141" metaid="R_APH141" name="Acylphosphatase (C14:1)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_APH141">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/APH141" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95878" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0968" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ttdceap_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ttdcea_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_APH161" metaid="R_APH161" name="Acylphosphatase (C16:1)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_APH161">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/APH161" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95880" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0968" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_hdceap_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_hdcea_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_APH180" metaid="R_APH180" name="Acylphosphatase (C18:0)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_APH180">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/APH180" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95881" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0968" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ocdcap_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ocdca_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_APH181" metaid="R_APH181" name="Acylphosphatase (C18:1)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_APH181">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/APH181" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95882" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0968" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ocdceap_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ocdcea_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GTHPi" metaid="R_GTHPi" name="Glutathione peridoxase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GTHPi">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GTHPi" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLUTATHIONE-PEROXIDASE-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.11.1.9" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00274" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100446" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16833" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16834" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16835" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16836" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1710" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gthrd_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o2_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gthox_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="2" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_SEPHCHCS" metaid="R_SEPHCHCS"
-      name="2-succinyl-5-enolpyruvyl-6-hydroxy-3-cyclohexene-1-carboxylate synthase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_SEPHCHCS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/SEPHCHCS" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.2.1.9" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R08165" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104329" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25593" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25594" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25595" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/25596" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2264" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_akg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ichor_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2sephchc_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DHNCOAS" metaid="R_DHNCOAS" name="1,4-dihydroxy-2-napthoyl-CoA synthase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DHNCOAS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DHNCOAS" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97412" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2262" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_sbzcoa_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_14dhncoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DHNCOAT" metaid="R_DHNCOAT" name="1,4-dihydroxy-2-napthoyl-CoA thioesterase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DHNCOAT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DHNCOAT" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97413" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1686" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_14dhncoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_coa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dhna_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FESD1s" metaid="R_FESD1s" name="Iron-sulfur cluster damage (peroxide, spontaneous)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FESD1s">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FESD1s" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99585" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_s0001" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_4fe4s_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="2" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3fe4s_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fe3_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="2" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_doxrbcn_e" metaid="R_EX_doxrbcn_e" name="Doxorubicin exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_doxrbcn_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/doxrbcn" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_doxrbcn_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_fusa_e" metaid="R_EX_fusa_e" name="Fusidic acid exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_fusa_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/fusa" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fusa_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_cm_e" metaid="R_EX_cm_e" name="Chloramphenicol exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_cm_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/cm" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cm_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_novbcn_e" metaid="R_EX_novbcn_e" name="Novobiocin exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_novbcn_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/novbcn" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_novbcn_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_I2FE2SR" metaid="R_I2FE2SR" name="ISC [2Fe-2S] regeneration" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_I2FE2SR">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/I2FE2SR" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100766" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b2529" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2530" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2fe1s_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_iscssh_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_iscu_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="4" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_iscs_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_iscu_2fe2s_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_TYRL" metaid="R_TYRL" name="Tyrosine lyase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_TYRL">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/TYRL" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-11319" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.1.99.19" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104993" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/26361" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/26362" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/26363" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/26364" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3991" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_amet_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_tyr__L_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_4crsol_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dad_5_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dhgly_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_met__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_THZPSN3" metaid="R_THZPSN3" name="Thiazole phosphate synthesis" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_THZPSN3">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/THZPSN3" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104861" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b3992" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3990" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0423" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2530" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4407" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dhgly_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dxyl5p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_iscssh_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_4mpetz_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_amp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_iscs_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_APG3PAT120" metaid="R_APG3PAT120"
-      name="Acyl-phosphate:glycerol-3-phosphate acyltransferase (C12:0)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_APG3PAT120">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/APG3PAT120" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95869" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3059" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ddcap_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glyc3p_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_1ddecg3p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_APH120" metaid="R_APH120" name="Acylphosphatase (C12:0)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_APH120">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/APH120" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95876" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0968" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ddcap_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ddca_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MOCDS" metaid="R_MOCDS" name="Molybdopterin cytidine dinucleotide synthase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MOCDS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MOCDS" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101691" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2877" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ctp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_moco_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_mococdp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_FUSAtex" metaid="R_FUSAtex"
-      name="Fusidic acid transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FUSAtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FUSAtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99717" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35103" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35104" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35105" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35106" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fusa_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fusa_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_NOVBCNtex" metaid="R_NOVBCNtex"
-      name="Novobiocin transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NOVBCNtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NOVBCNtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102008" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35175" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35176" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35177" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35178" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_s0001" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_novbcn_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_novbcn_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_rfamp_e" metaid="R_EX_rfamp_e" name="Rifampin exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_rfamp_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/rfamp" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_rfamp_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_QUIN2tex" metaid="R_QUIN2tex"
-      name="Quinate transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_QUIN2tex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/QUIN2tex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103397" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35195" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35196" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35197" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35198" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_quin_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_quin_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_quin_e" metaid="R_EX_quin_e" name="Quinate exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_quin_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/quin" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_quin_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_FORCT" metaid="R_FORCT" name="Formyl-CoA Transferase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FORCT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FORCT" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-1382" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.8.3.16" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R07290" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99616" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16545" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16546" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16547" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16548" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2374" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_forcoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_oxa_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_for_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_oxalcoa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DHPTDCs2" metaid="R_DHPTDCs2"
-      name="4,5-dihydroxy-2,3-pentanedione cyclization (spontaneous)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DHPTDCs2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DHPTDCs2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-10015" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97442" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35155" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35156" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35157" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35158" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_s0001" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dhptd_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_mdhdhf_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_3hpp_e" metaid="R_EX_3hpp_e" name="3-Hydroxypropanoate exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_3hpp_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/3hpp" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3hpp_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PACCOAE" metaid="R_PACCOAE" name="Ring 1,2-phenylacetyl-CoA epoxidase (NADPH)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PACCOAE">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PACCOAE" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102314" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b1389" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1388" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1391" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1392" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1390" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_o2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_phaccoa_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_rephaccoa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_OXDHCOAT" metaid="R_OXDHCOAT" name="3-oxo-5,6-dehydrosuberyl-CoA thiolase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_OXDHCOAT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/OXDHCOAT" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.223" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102241" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34439" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34440" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34441" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34442" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b1397" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1394" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3oxdhscoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_coa_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_23dhacoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_accoa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_HADPCOADH3" metaid="R_HADPCOADH3" name="3-hydroxyadipyl-CoA dehydrogenase (NAD+)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_HADPCOADH3">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/HADPCOADH3" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-2044" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.157" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.35" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R06941" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100555" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34851" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34852" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34853" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34854" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1395" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3hadpcoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nad_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadh_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_oxadpcoa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_O16A4COLIPAabctex" metaid="R_O16A4COLIPAabctex"
-      name="O16 antigen (x4) core oligosaccharide lipid A transport via ABC system (periplasm to extracellular)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_O16A4COLIPAabctex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/O16A4COLIPAabctex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102075" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b0054" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3201" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4261" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4262" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3199" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3200" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0641" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_o16a4colipa_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_o16a4colipa_e" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_COLIPAabctex" metaid="R_COLIPAabctex"
-      name="Core oligosaccharide lipid A transport via ABC system (periplasm to extracellular)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_COLIPAabctex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/COLIPAabctex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96845" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b0054" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3201" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3200" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0641" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4262" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3199" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4261" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_colipa_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_colipa_e" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ENLIPAabctex" metaid="R_ENLIPAabctex"
-      name="Phosphoethanolamine lipid A transport via ABC system (periplasm to extracellular)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ENLIPAabctex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ENLIPAabctex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97922" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b0054" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3201" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4261" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4262" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3199" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3200" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0641" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_enlipa_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_enlipa_e" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DM_mththf_c" metaid="R_DM_mththf_c"
-      name="Sink needed to allow (2R,4S)-2-methyl-2,3,3,4-tetrahydroxytetrahydrofuran to leave system" reversible="false" sboTerm="SBO:0000628">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DM_mththf_c">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/mththf" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mththf_c" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PYROX" metaid="R_PYROX" name="Pyrimidine oxygenase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PYROX">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PYROX" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103383" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b1007" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1012" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadh_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_o2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ura_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nad_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_uracp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_BMOGDS1" metaid="R_BMOGDS1"
-      name="Bis-molybdopterin guanine dinucleotide synthase (single GDP)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_BMOGDS1">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/BMOGDS1" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96315" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b3857" />
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b3857" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3856" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_bmoco_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gtp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_bmoco1gdp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MPTS" metaid="R_MPTS" name="Molybdopterin synthase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MPTS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MPTS" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101735" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b0785" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0784" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cpmp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cu2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_moadcosh_c" stoichiometry="2" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="5" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_moadcoo_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_mpt_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MOCOS" metaid="R_MOCOS" name="Molybdenum cofactor synthase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MOCOS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MOCOS" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101692" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0827" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mobd_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mptamp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_amp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cu2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_moco_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_BMOGDS2" metaid="R_BMOGDS2" name="Bis-molybdopterin guanine dinucleotide synthase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_BMOGDS2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/BMOGDS2" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96316" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b3857" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3856" />
-            </fbc:and>
-            <fbc:geneProductRef fbc:geneProduct="G_b3857" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_bmoco1gdp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gtp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_bmocogdp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FESD2s" metaid="R_FESD2s" name="Iron-sulfur cluster damage (nitrous oxide, spontaneous)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FESD2s">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FESD2s" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99586" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_s0001" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_4fe4s_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_no_c" stoichiometry="2" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3fe4s_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fe3_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_n2o_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_S2FE2SR" metaid="R_S2FE2SR" name="SUF [2Fe-2S] regeneration" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_S2FE2SR">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/S2FE2SR" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104149" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b1681" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1679" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1680" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1682" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1683" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2fe1s_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_sufbcd_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_sufsesh_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="5" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_sufbcd_2fe2s_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_sufse_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ACACT8r" metaid="R_ACACT8r" name="Acetyl-CoA acyltransferase (hexadecanoyl-CoA), (r)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ACACT8r">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ACACT8r" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95204" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35279" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35280" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35281" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35282" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2342" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3845" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3ohodcoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_coa_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_accoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pmtcoa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_CTECOAI7" metaid="R_CTECOAI7" name="3-cis-2-trans-enoyl-CoA isomerase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CTECOAI7">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CTECOAI7" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/5.3.3.8" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96941" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3846" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_hdcoa_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_hdd2coa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CLIPAabctex" metaid="R_CLIPAabctex"
-      name="Cold lipid A transport via ABC system (periplasm to extracellular)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CLIPAabctex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CLIPAabctex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96766" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b0054" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3201" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4261" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4262" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3199" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3200" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0641" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_lipa_cold_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_lipa_cold_e" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_K2L4Aabctex" metaid="R_K2L4Aabctex"
-      name="KDO(2)-lipid IV A transport via ABC system (periplasm to extracellular)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_K2L4Aabctex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/K2L4Aabctex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100900" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b0054" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3201" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4261" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4262" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3199" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3200" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0641" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_kdo2lipid4_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_kdo2lipid4_e" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FDH4pp" metaid="R_FDH4pp" name="Formate dehydrogenase (quinone-8) (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FDH4pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FDH4pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99478" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29075#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29076#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29077#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29078#1" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b3894" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3893" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3892" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b1476" />
-              <fbc:geneProductRef fbc:geneProduct="G_b1474" />
-              <fbc:geneProductRef fbc:geneProduct="G_b1475" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_for_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_q8_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_q8h2_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FDH5pp" metaid="R_FDH5pp" name="Formate Dehydrogenase (menaquinone-8) (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FDH5pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FDH5pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99480" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b1476" />
-              <fbc:geneProductRef fbc:geneProduct="G_b1474" />
-              <fbc:geneProductRef fbc:geneProduct="G_b1475" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b3894" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3893" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3892" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_for_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mqn8_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_mql8_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ACPPAT140" metaid="R_ACPPAT140"
-      name="Acyl-(acyl carrier protein):phosphate acyltransferase (C14:0)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ACPPAT140">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ACPPAT140" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95396" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b1094" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1090" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_myrsACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pi_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ttdcap_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_APG3PAT140" metaid="R_APG3PAT140"
-      name="Acyl-phosphate:glycerol-3-phosphate acyltransferase (C14:0)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_APG3PAT140">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/APG3PAT140" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95870" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3059" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glyc3p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ttdcap_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_1tdecg3p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_APG3PAT141" metaid="R_APG3PAT141"
-      name="Acyl-phosphate:glycerol-3-phosphate acyltransferase (C14:1)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_APG3PAT141">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/APG3PAT141" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95871" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3059" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glyc3p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ttdceap_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_1tdec7eg3p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_APG3PAT181" metaid="R_APG3PAT181"
-      name="Acyl-phosphate:glycerol-3-phosphate acyltransferase (C18:1)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_APG3PAT181">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/APG3PAT181" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95875" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3059" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glyc3p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ocdceap_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_1odec11eg3p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_APH140" metaid="R_APH140" name="Acylphosphatase (C14:0)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_APH140">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/APH140" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95877" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0968" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ttdcap_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ttdca_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_APH160" metaid="R_APH160" name="Acylphosphatase (C16:0)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_APH160">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/APH160" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95879" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0968" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_hdcap_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_hdca_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_OPMEACPD" metaid="R_OPMEACPD" name="3-Oxo-pimeloyl-[ACP] methyl ester dehydratase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_OPMEACPD">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/OPMEACPD" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-11481" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.59" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R10121" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102206" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0180" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_hpmeACP_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_epmeACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EPMEACPR" metaid="R_EPMEACPR" name="Enoylpimeloyl-[ACP] methyl ester reductase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EPMEACPR">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/EPMEACPR" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.3.1.10" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R10122" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97945" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1288" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_epmeACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pmeACP_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_AOXSr2" metaid="R_AOXSr2" name="8-amino-7-oxononanoate synthase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_AOXSr2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/AOXSr2" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-11484" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.47" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R10124" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95855" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0776" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ala__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pimACP_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_8aonn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_MEOHtrpp" metaid="R_MEOHtrpp"
-      name="Methanol reversible transport via diffusion (periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MEOHtrpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MEOHtrpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-459" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101464" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34871" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34872" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34873" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34874" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_s0001" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_meoh_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_meoh_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_SCYSDS" metaid="R_SCYSDS" name="SUF Cysteine desulfuration" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_SCYSDS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/SCYSDS" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104298" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b1680" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1679" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cys__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_sufse_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ala__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_sufsesh_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_S2FE2SS" metaid="R_S2FE2SS" name="SUF [2Fe-2S] Synthesis" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_S2FE2SS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/S2FE2SS" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104150" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b1682" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1683" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1680" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1681" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1679" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fadh2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fe2_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_sufbcd_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_sufsesh_c" stoichiometry="2" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fad_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="7" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_sufbcd_2fe2s_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_sufse_c" stoichiometry="2" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_S4FE4SR" metaid="R_S4FE4SR" name="SUF [4Fe-4S] Reduction" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_S4FE4SR">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/S4FE4SR" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104171" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b1681" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1682" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1683" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fadh2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_sufbcd_2fe2s2_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fad_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_sufbcd_4fe4s_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_SELtex" metaid="R_SELtex"
-      name="Selenate transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_SELtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/SELtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104327" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34887" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34888" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34889" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34890" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_sel_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_sel_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_SELR" metaid="R_SELR" name="Selenate reductase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_SELR">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/SELR" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104323" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34939" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34940" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34941" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34942" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b1588" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1589" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1590" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1587" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mql8_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_sel_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_mqn8_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_slnt_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_OGMEACPD" metaid="R_OGMEACPD" name="3-Oxo-glutaryl-[ACP] methyl ester dehydratase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_OGMEACPD">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/OGMEACPD" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-11477" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.59" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R10117" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102159" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0180" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_hgmeACP_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_egmeACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EGMEACPR" metaid="R_EGMEACPR" name="Enoylglutaryl-[ACP] methyl ester reductase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EGMEACPR">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/EGMEACPR" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.3.1.10" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R10118" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97906" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1288" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_egmeACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gmeACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_OPMEACPR" metaid="R_OPMEACPR" name="3-Oxo-pimeloyl-[ACP] methyl ester reductase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_OPMEACPR">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/OPMEACPR" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102207" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1093" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_opmeACP_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_hpmeACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PMEACPE" metaid="R_PMEACPE" name="Pimeloyl-[ACP] methyl ester esterase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PMEACPE">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PMEACPE" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-11483" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.1.85" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R09725" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103041" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3412" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pmeACP_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_meoh_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pimACP_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_MEOHtex" metaid="R_MEOHtex"
-      name="Methanol transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MEOHtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MEOHtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-459" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101464" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34871" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34872" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34873" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34874" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_meoh_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_meoh_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_5mtr_e" metaid="R_EX_5mtr_e" name="5-Methylthio-D-ribose exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_5mtr_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/5mtr" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_5mtr_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MECDPDH5" metaid="R_MECDPDH5"
-      name="2C-methyl-D-erythritol 2,4 cyclodiphosphate dehydratase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MECDPDH5">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MECDPDH5" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101450" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b2515" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2895" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b2515" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0684" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2mecdp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_flxr_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_flxso_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2mb4p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_RNTR1c2" metaid="R_RNTR1c2" name="Ribonucleoside-triphosphate reductase (ATP) (flavodoxin)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_RNTR1c2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/RNTR1c2" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104072" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b0684" />
-              <fbc:geneProductRef fbc:geneProduct="G_b4238" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b4238" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3924" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0684" />
-              <fbc:geneProductRef fbc:geneProduct="G_b4237" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b4238" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3924" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2895" />
-              <fbc:geneProductRef fbc:geneProduct="G_b4237" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b2895" />
-              <fbc:geneProductRef fbc:geneProduct="G_b4238" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_flxr_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="2" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_datp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_flxso_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_RNTR2c2" metaid="R_RNTR2c2" name="Ribonucleoside-triphosphate reductase (GTP) (flavodoxin)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_RNTR2c2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/RNTR2c2" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104075" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b4238" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3924" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0684" />
-              <fbc:geneProductRef fbc:geneProduct="G_b4237" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b4238" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3924" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2895" />
-              <fbc:geneProductRef fbc:geneProduct="G_b4237" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b2895" />
-              <fbc:geneProductRef fbc:geneProduct="G_b4238" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b0684" />
-              <fbc:geneProductRef fbc:geneProduct="G_b4238" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_flxr_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gtp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="2" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dgtp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_flxso_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_RNTR3c2" metaid="R_RNTR3c2" name="Ribonucleoside-triphosphate reductase (CTP) (flavodoxin)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_RNTR3c2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/RNTR3c2" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104078" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b2895" />
-              <fbc:geneProductRef fbc:geneProduct="G_b4238" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b4238" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3924" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0684" />
-              <fbc:geneProductRef fbc:geneProduct="G_b4237" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b4238" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3924" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2895" />
-              <fbc:geneProductRef fbc:geneProduct="G_b4237" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b0684" />
-              <fbc:geneProductRef fbc:geneProduct="G_b4238" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ctp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_flxr_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="2" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dctp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_flxso_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_RNTR4c2" metaid="R_RNTR4c2" name="Ribonucleoside-triphosphate reductase (UTP) (flavodoxin)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_RNTR4c2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/RNTR4c2" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104081" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b0684" />
-              <fbc:geneProductRef fbc:geneProduct="G_b4238" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b4238" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3924" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0684" />
-              <fbc:geneProductRef fbc:geneProduct="G_b4237" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b4238" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3924" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2895" />
-              <fbc:geneProductRef fbc:geneProduct="G_b4237" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b2895" />
-              <fbc:geneProductRef fbc:geneProduct="G_b4238" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_flxr_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_utp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dutp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_flxso_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FLDR2" metaid="R_FLDR2" name="Flavodoxin reductase (NADPH)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FLDR2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FLDR2" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99599" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b3924" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2895" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b3924" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0684" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_flxso_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_flxr_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CDGS" metaid="R_CDGS" name="7-deaza-7-carboxyguanine synthase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CDGS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CDGS" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-6575" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.3.99.3" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R10002" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96522" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27974" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27975" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27976" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/27977" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cph4_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cdg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nh4_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_5MTRtpp" metaid="R_5MTRtpp"
-      name="5-Methylthio-D-ribose transport via proton symport (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_5MTRtpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/5MTRtpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95090" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_5mtr_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_5mtr_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_TTRCYCtex" metaid="R_TTRCYCtex"
-      name="Tetracycline transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_TTRCYCtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/TTRCYCtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104976" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35239" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35240" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35241" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35242" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ttrcyc_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ttrcyc_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_TTRCYCtpp" metaid="R_TTRCYCtpp" name="Tetracycline transport via TolC system"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_TTRCYCtpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/TTRCYCtpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104977" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b3035" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0463" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2470" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b3035" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0463" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0462" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ttrcyc_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ttrcyc_e" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FESR" metaid="R_FESR" name="Iron-sulfur cluster repair" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FESR">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FESR" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99587" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4209" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3fe4s_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fe2_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_4fe4s_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_OXCOAHDH" metaid="R_OXCOAHDH"
-      name="Oxepin-CoA hydrolase/ 3-oxo-5,6-dehydrosuberyl-CoA semialdehyde dehydrogenase (NADP+)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_OXCOAHDH">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/OXCOAHDH" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-6511" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102240" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34875" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34876" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34877" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34878" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1387" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2oxpaccoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3oxdhscoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadph_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_DHACOAH" metaid="R_DHACOAH" name="2,3-dehydroadipyl-CoA hydratase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DHACOAH">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DHACOAH" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.2.1.17" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97357" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34863" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34864" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34865" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34866" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1393" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_23dhacoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3hadpcoa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_THFAT" metaid="R_THFAT" name="Tetrahydrofolate aminomethyltransferase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_THFAT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/THFAT" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.1.2.10" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02300" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99614" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34767" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34768" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34769" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34770" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2551" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_methf_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_5fthf_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FOMETRi" metaid="R_FOMETRi" name="Aminomethyltransferase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FOMETRi">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FOMETRi" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.1.2.10" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02300" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99614" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34767" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34768" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34769" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34770" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2912" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_5fthf_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_methf_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_SLNTtex" metaid="R_SLNTtex"
-      name="Selenite transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_SLNTtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/SLNTtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104325" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34891" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34892" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34893" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34894" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_slnt_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_slnt_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_SELGTHR2" metaid="R_SELGTHR2" name="Selenate glutathione reductase II" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_SELGTHR2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/SELGTHR2" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104319" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dgslnt_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gslnt_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gthrd_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GDPTPDP" metaid="R_GDPTPDP"
-      name="Guanosine 3'-diphosphate 5'-triphosphate 3'-diphosphatase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GDPTPDP">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GDPTPDP" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-6427" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.7.2" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100094" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/33055" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/33056" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/33057" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/33058" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3650" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gdptp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gtp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_COLIPAKpp" metaid="R_COLIPAKpp" name="Lipid A core kinase (periplasm)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_COLIPAKpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/COLIPAKpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96842" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2174" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_colipa_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_udcpdp_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_colipap_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_udcpp_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_3HPPtpp" metaid="R_3HPPtpp"
-      name="3-hydroxypropionate transport via proton symport (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_3HPPtpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/3HPPtpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94905" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3hpp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3hpp_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MPTSS" metaid="R_MPTSS" name="Molybdopterin synthase sulfurylase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MPTSS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MPTSS" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101736" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0826" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_moadcoo_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_moadamp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CPMPS" metaid="R_CPMPS" name="Cyclic pyranopterin monophosphate synthase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CPMPS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CPMPS" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.1.99.18" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96877" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b0783" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0781" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gtp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cpmp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LIPOCT" metaid="R_LIPOCT" name="Lipoyl(octanoyl) transferase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LIPOCT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LIPOCT" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101089" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0630" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ocACP_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ACP_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_octapb_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LIPOS" metaid="R_LIPOS" name="Lipoate synthase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LIPOS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LIPOS" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101090" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0628" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_4fe4s_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_amet_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nad_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_octapb_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2fe2s_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dad_5_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fe2_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_lipopb_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_met__L_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadh_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_OCTNLL" metaid="R_OCTNLL" name="Octanoate non-lipoylated apo domain ligase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_OCTNLL">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/OCTNLL" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102155" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4386" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_octa_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_amp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_octapb_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LIPATPT" metaid="R_LIPATPT" name="Lipoate-ATP adenylate transferase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LIPATPT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LIPATPT" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-8654" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.7.63" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/6.3.1.20" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R07770" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101081" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12913" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12914" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12915" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/12916" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4386" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_lipoate_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_lipoamp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LIPAMPL" metaid="R_LIPAMPL" name="Lipoyl-adenylate protein ligase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LIPAMPL">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LIPAMPL" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101080" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4386" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_lipoamp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_amp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_lipopb_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ALDD19xr" metaid="R_ALDD19xr" name="Aldehyde dehydrogenase (phenylacetaldehyde, NAD)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ALDD19xr">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ALDD19xr" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:PHENDEHYD-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.2.1.39" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.2.1.5" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R02536" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95743" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21392" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21393" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21394" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/21395" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1385" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nad_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pacald_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadh_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pac_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MMM" metaid="R_MMM" name="Methylmalonyl-CoA mutase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MMM">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MMM" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101660" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2917" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_succoa_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_mmcoa__S_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MOGDS" metaid="R_MOGDS" name="Molybdopterin guanine dinucleotide synthase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MOGDS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MOGDS" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101701" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b3857" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3856" />
-            </fbc:and>
-            <fbc:geneProductRef fbc:geneProduct="G_b3857" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gtp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_moco_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_mocogdp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_WCOS" metaid="R_WCOS" name="Tungsten pterin cofactor synthase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_WCOS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/WCOS" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105218" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0827" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mptamp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_tungs_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_amp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cu2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_wco_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_RFAMPtpp" metaid="R_RFAMPtpp" name="Rifampin transport via TolC system" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_RFAMPtpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/RFAMPtpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104015" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b3035" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0463" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0462" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b3035" />
-              <fbc:geneProductRef fbc:geneProduct="G_b0463" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2470" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_rfamp_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_rfamp_e" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_VPAMTr" metaid="R_VPAMTr" name="Valine-pyruvate aminotransferase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_VPAMTr">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/VPAMTr" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:VALINE-PYRUVATE-AMINOTRANSFER-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.6.1.66" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01215" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105217" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22912" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22913" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22914" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22915" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3572" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3mob_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ala__L_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pyr_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_val__L_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ACOLIPAabctex" metaid="R_ACOLIPAabctex"
-      name="Arabinose modified core oligosaccharide lipid A transport via ABC system (periplasm to extracellular)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ACOLIPAabctex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ACOLIPAabctex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95378" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b0054" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3201" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4261" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4262" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3199" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3200" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0641" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_acolipa_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_acolipa_e" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ECA4COLIPAabctex" metaid="R_ECA4COLIPAabctex"
-      name="Enterobacterial common antigen (x4) core oligosaccharide lipid A transport via ABC system (periplasm to extracellular)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ECA4COLIPAabctex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ECA4COLIPAabctex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97871" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b0054" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3201" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4261" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4262" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3199" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3200" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0641" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_eca4colipa_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_eca4colipa_e" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_COLIPAPabctex" metaid="R_COLIPAPabctex"
-      name="Core oligosaccharide lipid A diphosphate transport via ABC system (periplasm to extracellular)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_COLIPAPabctex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/COLIPAPabctex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96843" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b0054" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3201" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4261" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4262" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3199" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3200" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0641" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_colipap_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_colipap_e" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_CH4tex" metaid="R_CH4tex" name="Methane Transport(extracellular via diffusion)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CH4tex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CH4tex" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ch4_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ch4_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_TARTRDtex" metaid="R_TARTRDtex"
-      name="D-tartrate transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_TARTRDtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/TARTRDtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104722" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35199" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35200" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35201" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35202" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_tartr__D_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_tartr__D_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_3OXCOAT" metaid="R_3OXCOAT" name="3-oxoadipyl-CoA thiolase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_3OXCOAT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/3OXCOAT" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-3641" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.16" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.174" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00829" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94967" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19481" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19482" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19483" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/19484" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1397" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_coa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_oxadpcoa_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_accoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_succoa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_BTNt2ipp" metaid="R_BTNt2ipp" name="Biotin transport via proton symport (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_BTNt2ipp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/BTNt2ipp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96334" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_btn_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_btn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_BTNtex" metaid="R_BTNtex"
-      name="Biotin transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_BTNtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/BTNtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-240" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96333" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28458" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28459" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28460" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28461" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_btn_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_btn_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_2DGULRGx" metaid="R_2DGULRGx" name="2-Dehydro-L-gulonate reductase to gluconate (NADH)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_2DGULRGx">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/2DGULRGx" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94785" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3553" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2dhguln_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadh_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glcn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nad_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_2DGULRGy" metaid="R_2DGULRGy" name="2-Dehydro-L-gulonate reductase to gluconate (NADPH)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_2DGULRGy">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/2DGULRGy" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR94786" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3553" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2dhguln_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glcn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_AP4AS" metaid="R_AP4AS" name="Ap4A synthetase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_AP4AS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/AP4AS" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-5208" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.7.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95858" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34935" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34936" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34937" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34938" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4129" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ap4a_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ARBTptspp" metaid="R_ARBTptspp" name="Arbutin transport via PEP:Pyr PTS (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ARBTptspp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ARBTptspp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95932" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34943" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34944" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34945" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34946" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b2416" />
-              <fbc:geneProductRef fbc:geneProduct="G_b3722" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2415" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b2416" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2715" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2415" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_arbt_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pep_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_arbt6p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pyr_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ARBTtex" metaid="R_ARBTtex"
-      name="Arbutin transport via diffusion (extracellular to periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ARBTtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ARBTtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95933" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35023" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35024" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35025" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35026" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_arbt_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_arbt_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_arbt_e" metaid="R_EX_arbt_e" name="Arbutin exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_arbt_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/arbt" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_arbt_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_DMSOtpp" metaid="R_DMSOtpp"
-      name="Dimethyl sulfoxide transport via diffusion (periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DMSOtpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DMSOtpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-273" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97533" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29699" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29700" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29701" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29702" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_s0001" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dmso_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dmso_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_PYDXtex" metaid="R_PYDXtex" name="Pyridoxal transport via diffusion (extracellular)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PYDXtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PYDXtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-214" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103370" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28462" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28463" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28464" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28465" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pydx_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pydx_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PYDXtpp" metaid="R_PYDXtpp" name="Pyridoxal import" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PYDXtpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PYDXtpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-214" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103370" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28462" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28463" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28464" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28465" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pydx_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pydx_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_SUCASPtpp" metaid="R_SUCASPtpp" name="Succinate:aspartate antiporter (periplasm)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_SUCASPtpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/SUCASPtpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-106A" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104611" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29343" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29344" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29345" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29346" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b4123" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4138" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0621" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_asp__L_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_succ_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_asp__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_succ_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_SUCMALtpp" metaid="R_SUCMALtpp" name="Succinate:malate antiporter (periplasm)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_SUCMALtpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/SUCMALtpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-106B" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97456" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29327" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29328" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29329" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29330" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b4123" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4138" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0621" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mal__L_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_succ_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_mal__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_succ_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_PYDXNtex" metaid="R_PYDXNtex" name="Pyridoxine transport via diffusion (extracellular)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PYDXNtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PYDXNtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-205" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103364" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28470" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28471" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28472" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28473" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pydxn_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pydxn_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PYDXNtpp" metaid="R_PYDXNtpp" name="Pyridoxine import" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PYDXNtpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PYDXNtpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-205" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103364" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28470" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28471" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28472" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28473" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pydxn_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pydxn_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_PYDAMtex" metaid="R_PYDAMtex"
-      name="Pyridoxamine transport via diffusion (extracellular)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PYDAMtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PYDAMtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-213" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103358" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28466" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28467" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28468" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28469" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pydam_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pydam_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PYDAMtpp" metaid="R_PYDAMtpp" name="Pyridoxamine import" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PYDAMtpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PYDAMtpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-213" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103358" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28466" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28467" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28468" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28469" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pydam_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pydam_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_13PPDH2" metaid="R_13PPDH2" name="1,3-propanediol dehydrogenase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_13PPDH2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/13PPDH2" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3011" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3hppnl_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_13ppd_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_TARTt2_3pp" metaid="R_TARTt2_3pp"
-      name="D-tartrate transport via proton symport (3 H) (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_TARTt2_3pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/TARTt2_3pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104725" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4123" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="3" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_tartr__D_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="3" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_tartr__D_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_SUCTARTtpp" metaid="R_SUCTARTtpp" name="Succinate:D-tartrate antiporter (periplasm)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_SUCTARTtpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/SUCTARTtpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-499" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104642" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34763" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34764" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34765" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34766" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4123" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_succ_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_tartr__D_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_succ_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_tartr__D_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_APCS" metaid="R_APCS" name="Aminopropylcadaverine synthase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_APCS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/APCS" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-5217" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.5.1.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.5.1.16" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R08359" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95867" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/33387" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/33388" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/33389" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/33390" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0121" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_15dap_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ametam_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_5mta_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_na15dap_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CHTBSptspp" metaid="R_CHTBSptspp" name="Chitobiose transport via PEP:Pyr PTS (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CHTBSptspp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CHTBSptspp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96715" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b2415" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1737" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1738" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1736" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2416" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_chtbs_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pep_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_chtbs6p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pyr_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_CHTBStex" metaid="R_CHTBStex"
-      name="Chitobiose transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CHTBStex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CHTBStex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-445" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96716" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35051" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35052" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35053" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35054" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0681" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_chtbs_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_chtbs_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_TRPtipp" metaid="R_TRPtipp" name="L-tryptophan transport out (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_TRPtipp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/TRPtipp" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1473" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_trp__L_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_trp__L_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_TYRtipp" metaid="R_TYRtipp" name="L-tyrosine transport out (periplasm)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_TYRtipp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/TYRtipp" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1473" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_tyr__L_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_tyr__L_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ThDPAT" metaid="R_ThDPAT" name="ThDP adenylyl transferase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ThDPAT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ThDPAT" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-5291" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.7.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105006" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35243" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35244" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35245" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35246" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_thmpp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_athtp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_GHBDHx" metaid="R_GHBDHx" name="Gamma-hydroxybutyrate dehydrogenase (NADH)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GHBDHx">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GHBDHx" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:4-HYDROXYBUTYRATE-DEHYDROGENASE-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.61" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01644" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100140" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23948" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23949" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23950" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23951" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3882" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadh_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_sucsal_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ghb_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nad_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_APPLDHr" metaid="R_APPLDHr" name="Aminopropanol dehydrogenase reversible"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_APPLDHr">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/APPLDHr" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:AMINOPROPDEHYDROG-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.75" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.3.1.37" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R03759" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95894" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16517" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16518" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16519" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/16520" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3945" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_aact_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadh_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_appl_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nad_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_SPMDt3pp" metaid="R_SPMDt3pp"
-      name="Spermidine transport out via proton antiport (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_SPMDt3pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/SPMDt3pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-266" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104497" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28735" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28736" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28737" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28738" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b1600" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1599" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_spmd_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_spmd_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PHEtipp" metaid="R_PHEtipp" name="L-phenylalanine transport out (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PHEtipp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PHEtipp" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1473" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_phe__L_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_phe__L_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_G2PP" metaid="R_G2PP" name="Glycerol-2-phosphate phosphatase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_G2PP">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/G2PP" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLYCEROL-2-PHOSPHATASE-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/3.1.3.19" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01043" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR99852" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13105" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13106" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13107" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/13108" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2533" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glyc2p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glyc_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MALt3pp" metaid="R_MALt3pp" name="L-malate transport out via proton antiport (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MALt3pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MALt3pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101373" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mal__L_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_mal__L_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CITt3pp" metaid="R_CITt3pp" name="Citrate transport out via proton antiport (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CITt3pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CITt3pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96747" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cit_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cit_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_DHNPA2r" metaid="R_DHNPA2r" name="Dihydroneopterin aldolase reversible"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DHNPA2r">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DHNPA2r" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:H2NEOPTERINALDOL-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-10857" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/4.1.2.25" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R03504" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97415" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3058" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dhnpt_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_6hmhpt_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gcald_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_QUIN2tpp" metaid="R_QUIN2tpp" name="Quinate transport (periplasm)" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_QUIN2tpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/QUIN2tpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103397" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35195" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35196" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35197" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35198" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_quin_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_quin_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GLYC2Pabcpp" metaid="R_GLYC2Pabcpp"
-      name="Sn-Glycerol 2-phosphate transport via ABC system (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLYC2Pabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLYC2Pabcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100318" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34759#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34760#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34761#1" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/34762#1" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b3451" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3450" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3453" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3452" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glyc2p_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glyc2p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_CRNDtex" metaid="R_CRNDtex"
-      name="D-carnitine transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CRNDtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CRNDtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96904" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35067" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35068" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35069" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/35070" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_crn__D_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_crn__D_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_SHGO" metaid="R_SHGO" name="S-2-hydroxyglutarate oxidase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_SHGO">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/SHGO" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2660" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_S2hglut_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_o2_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_akg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o2_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NADHXD" metaid="R_NADHXD" name="NADHX dehydratase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NADHXD">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NADHXD" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4167" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadhx__S_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_amp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadh_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NADPHHR" metaid="R_NADPHHR" name="NADPH hydratase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NADPHHR">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NADPHHR" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_s0001" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1779" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadphx__R_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NADPHHS" metaid="R_NADPHHS" name="NADPH hydratase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NADPHHS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NADPHHS" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1779" />
-            <fbc:geneProductRef fbc:geneProduct="G_s0001" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadphx__S_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NADHHS" metaid="R_NADHHS" name="NADH hydratase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NADHHS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NADHHS" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_s0001" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1779" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadh_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadhx__S_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_NADHXE" metaid="R_NADHXE" name="NADHX epimerase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NADHXE">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NADHXE" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4167" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadhx__S_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadhx__R_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_SELabcpp" metaid="R_SELabcpp" name="Selenatenate transport via ABC system (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_SELabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/SELabcpp" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b2425" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2423" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2422" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2424" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b3917" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2423" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2422" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2424" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_sel_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_sel_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PYK2" metaid="R_PYK2" name="Pyruvate kinase(2)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PYK2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PYK2" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.1.40" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00659" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103372" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1854" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pep_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_udp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pyr_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_utp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PYK3" metaid="R_PYK3" name="Pyruvate kinase(3)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PYK3">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PYK3" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-14117" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.1.40" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00430" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100460" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30295" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30296" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30297" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30298" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1854" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gdp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pep_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gtp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pyr_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PYK4" metaid="R_PYK4" name="Pyruvate kinase(4)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PYK4">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PYK4" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.1.40" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00572" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103373" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1854" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cdp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pep_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ctp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pyr_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NADPHXD" metaid="R_NADPHXD" name="NADPHX dehydratase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NADPHXD">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NADPHXD" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4167" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadphx__S_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_amp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadph_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_NADHHR" metaid="R_NADHHR" name="NADH hydratase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NADHHR">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NADHHR" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_s0001" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1779" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadh_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadhx__R_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_NADPHXE" metaid="R_NADPHXE" name="NADPHX epimerase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_NADPHXE">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/NADPHXE" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4167" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadphx__R_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadphx__S_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ALAtpp" metaid="R_ALAtpp" name="L-alanine export via facilited diffusion"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ALAtpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ALAtpp" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2670" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ala__L_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ala__L_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DHBSZ3FEabcpp" metaid="R_DHBSZ3FEabcpp"
-      name="23dhbsz3 Fe III transport via ABC system periplasm" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DHBSZ3FEabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DHBSZ3FEabcpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97371" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b0590" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0588" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0589" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0592" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fe3dhbzs3_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fe3dhbzs3_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FE3DHBZS3R" metaid="R_FE3DHBZS3R"
-      name="Fe(III)-(2,3-dihydroxybenzoylserine)3 reductase via NADPH" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FE3DHBZS3R">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FE3DHBZS3R" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3070" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fe3dhbzs3_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_23dhbzs3_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fe2_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="3" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_DXYLONtpp" metaid="R_DXYLONtpp" name="D-xylonate reversible tranposrt (periplasm)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DXYLONtpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DXYLONtpp" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dxylnt_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dxylnt_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_DXYLTD" metaid="R_DXYLTD" name="D-xylonate dehydratase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DXYLTD">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DXYLTD" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0269" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4297" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dxylnt_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2ddara_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_2DDARAA" metaid="R_2DDARAA" name="2-dehydro-3-deoxy-D-arabinonate Aldolase"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_2DDARAA">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/2DDARAA" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b4298" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0268" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2ddara_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gcald_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pyr_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_2DGLCptspp" metaid="R_2DGLCptspp"
-      name="2-Deoxy-D-glucose transport via PEP:Pyr PTS (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_2DGLCptspp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/2DGLCptspp" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b2416" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1817" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2415" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1819" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1818" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2dglc_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pep_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2doxg6p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pyr_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GNP" metaid="R_GNP" name="Phosphogluconate phosphatase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GNP">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GNP" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b3715" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2690" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_6pgc_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glcn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ALLTAMH2" metaid="R_ALLTAMH2" name="Allantoate amidinohydrolase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ALLTAMH2">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ALLTAMH2" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0516" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_alltt_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="2" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_co2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nh4_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_urdgci_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_UGCIAMH" metaid="R_UGCIAMH" name="Ureidoglycine aminohydrolase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_UGCIAMH">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/UGCIAMH" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0515" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_urdgci_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nh4_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_urdglyc_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_METGLCUR" metaid="R_METGLCUR" name="1-O-Methyl-Beta-D-glucuronidase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_METGLCUR">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/METGLCUR" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1617" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_metglcur_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glcur_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_meoh_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ACOAD1fr" metaid="R_ACOAD1fr" name="Acyl-CoA dehydrogenase (butanoyl-CoA)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ACOAD1fr">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ACOAD1fr" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1695" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_b2coa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fadh2_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_btcoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fad_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_23DOGULNt4pp" metaid="R_23DOGULNt4pp" name="Na+/ 2,3-Dioxo-L-gulonate symport (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_23DOGULNt4pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/23DOGULNt4pp" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b3579" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3577" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3578" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_23doguln_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_na1_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_23doguln_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_na1_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FE3DCITexs" metaid="R_FE3DCITexs" name="Dicitrate Fe(III) binding (spontaneous)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FE3DCITexs">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FE3DCITexs" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_s0001" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cit_e" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fe3_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fe3dcit_e" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FEENTERES" metaid="R_FEENTERES" name="Enterochelin Esterase (Fe containing)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FEENTERES">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FEENTERES" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0585" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_feenter_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fe3dhbzs3_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FEENTERR4" metaid="R_FEENTERR4" name="Fe-enterobactin reduction via nadph"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FEENTERR4">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FEENTERR4" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3070" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_feenter_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_enter_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fe2_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_DXYLONtex" metaid="R_DXYLONtex"
-      name="D-xylonate transport via diffusion (extracellular)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DXYLONtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DXYLONtex" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dxylnt_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dxylnt_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_PSURItex" metaid="R_PSURItex"
-      name="Pseudouridine transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PSURItex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PSURItex" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_psuri_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_psuri_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ALR2x" metaid="R_ALR2x" name="Aldose reductase (methylglyoxal) (nadh)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ALR2x">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ALR2x" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1771" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mthgxl_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadh_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_acetol_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nad_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_OMPHHXy" metaid="R_OMPHHXy" name="2-octaprenyl-6-methoxyphenol hydroxylase (NADPH)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_OMPHHXy">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/OMPHHXy" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2907" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2omph_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_o2_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2ombzl_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CHLt3pp" metaid="R_CHLt3pp" name="Choline transport via proton antiport (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CHLt3pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CHLt3pp" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0543" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_chol_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_chol_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GLYBt3pp" metaid="R_GLYBt3pp"
-      name="Glycine betaine transport via proton antiport (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLYBt3pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLYBt3pp" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0543" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glyb_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glyb_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_AI2tpp" metaid="R_AI2tpp" name="Quorum signal AI-2 exporter" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_AI2tpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/AI2tpp" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1601" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mththf_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_mththf_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_Ftpp" metaid="R_Ftpp" name="F- efflux transport" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_Ftpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/Ftpp" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0624" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_f_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_f_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_SQVOSI" metaid="R_SQVOSI" name="Sulfoquinovose isomerase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_SQVOSI">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/SQVOSI" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3880" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_sq_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_sf_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_6D6SPA" metaid="R_6D6SPA" name="6-deoxy-6-sulfofructose-1-phosphate aldolase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_6D6SPA">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/6D6SPA" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3881" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_sfp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dhap_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_sla_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DHPStr" metaid="R_DHPStr" name="2,3-dihydroxypropane 1-sulfonate transporter"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DHPStr">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DHPStr" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3877" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dhps_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dhps_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_SQtr" metaid="R_SQtr" name="Sulfoquinovose transporter" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_SQtr">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/SQtr" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3876" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_sq_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_sq_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_DHPStex" metaid="R_DHPStex"
-      name="2,3-dihydroxypropane 1-sulfonate transport via diffusion" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DHPStex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DHPStex" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3875" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dhps_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dhps_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_FMNtex" metaid="R_FMNtex" name="FMN transport, outer membrane" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FMNtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FMNtex" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fmn_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fmn_e" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_dxylnt_e" metaid="R_EX_dxylnt_e" name="D-Xylonate exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_dxylnt_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/dxylnt" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dxylnt_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_AI2K" metaid="R_AI2K" name="Autoinducer-2 kinase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_AI2K">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/AI2K" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1511" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dhptd_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dhptdp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_CLBtex" metaid="R_CLBtex"
-      name="Cellobiose transport transport via diffusion extracellular to periplasm " reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CLBtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CLBtex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96760" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cellb_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cellb_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ACOXT" metaid="R_ACOXT" name="Acetyl-CoA:oxalate CoA-transferase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ACOXT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ACOXT" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2371" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_accoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_oxa_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ac_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_oxalcoa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_mththf_e" metaid="R_EX_mththf_e"
-      name="(2R,4S)-2-methyl-2,3,3,4-tetrahydroxytetrahydrofuran exchange" reversible="false" sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_mththf_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/mththf" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mththf_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_2HESR" metaid="R_2HESR" name="2-hydroxyethyldisulfide reductase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_2HESR">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/2HESR" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2989" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2302" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dtgcl_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gthrd_c" stoichiometry="2" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gthox_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_mercpeth_c" stoichiometry="2" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CHOLID" metaid="R_CHOLID" name="7-?-hydroxysteroid dehydrogenase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CHOLID">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CHOLID" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1619" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cholate_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nad_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dhcholn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadh_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CHOLATEtpp" metaid="R_CHOLATEtpp" name="Cholate transport via proton antiport"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CHOLATEtpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CHOLATEtpp" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4337" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cholate_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cholate_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_4ABZGLUH" metaid="R_4ABZGLUH" name="P-aminobenzoyl-glutamate hydrolase"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_4ABZGLUH">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/4ABZGLUH" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b1337" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1338" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_4abzglu_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_4abz_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glu__L_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_4ABZGLUtr" metaid="R_4ABZGLUtr" name="P-aminobenzoyl glutamate:H+ symporter"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_4ABZGLUtr">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/4ABZGLUtr" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1336" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_4abzglu_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_4abzglu_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PHDA" metaid="R_PHDA" name="Phenylhydantoinase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PHDA">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PHDA" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2873" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_5phdt_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_5phua_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_TEO2M" metaid="R_TEO2M" name="Tellurite methyltransferase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_TEO2M">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/TEO2M" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1430" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_amet_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_teo2_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ahcys_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_mteo2_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PACOAT" metaid="R_PACOAT" name="Phenylacetyl-CoA thioesterase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PACOAT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PACOAT" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1396" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_phaccoa_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_coa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pac_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CYSItpp" metaid="R_CYSItpp" name="Cystine efflux transport" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CYSItpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CYSItpp" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3943" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cysi__L_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cysi__L_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DHPTDNR" metaid="R_DHPTDNR" name="Dihydropteridine reductase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DHPTDNR">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DHPTDNR" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.5.1.34" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R07355" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97443" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17865" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17866" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17867" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17868" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0578" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dhptdn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="3" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_thptdn_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DHPTDNRN" metaid="R_DHPTDNRN" name="Dihydropteridine reductase (NADH)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DHPTDNRN">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DHPTDNRN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.5.1.34" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R07354" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97444" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17869" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17870" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17871" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17872" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0578" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dhptdn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="3" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadh_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nad_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_thptdn_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_PCNO" metaid="R_PCNO" name="Propanoyl-CoA:NADP+ 2-oxidoreductase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PCNO">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PCNO" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-9087" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.3.1.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.3.1.84" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00919" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102415" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/26454" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/26455" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/26456" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/26457" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3253" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ppcoa_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadph_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_prpncoa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_HPACOAT" metaid="R_HPACOAT" name="Hydroxyphenylacetyl-CoA thioesterase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_HPACOAT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/HPACOAT" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1396" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_34dphacoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_34dhpha_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_coa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PUACGAMtr" metaid="R_PUACGAMtr"
-      name="Transport of poly-?-1,6-N-acetyl-D-glucosamine (poly-?-1,6-N-acetyl-D-glucosamine synthase)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PUACGAMtr">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PUACGAMtr" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b1021" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1022" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_puacgam_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_puacgam_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DC6PDA" metaid="R_DC6PDA" name="Chito-oligosaccharide mono-deacetylase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DC6PDA">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DC6PDA" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1733" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_chtbs6p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ac_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_mchtbs6p_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_5DGLCNR" metaid="R_5DGLCNR" name="5-dehydro-D-gluconate reductase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_5DGLCNR">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/5DGLCNR" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN-14367" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.69" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01740" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95065" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23936" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23937" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23938" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23939" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4266" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_5dglcn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glcn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PIt2rpp" metaid="R_PIt2rpp" name="Phosphate reversible transport via symport (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PIt2rpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PIt2rpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-114" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102872" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29939" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29940" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29941" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29942" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b3493" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2987" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pi_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LEUt2rpp" metaid="R_LEUt2rpp"
-      name="L-leucine reversible transport via proton symport (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LEUt2rpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LEUt2rpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101055" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0401" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_leu__L_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_leu__L_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LCTStpp" metaid="R_LCTStpp" name="Lactose transport via proton symport (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LCTStpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LCTStpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101025" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28867" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28868" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28869" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28870" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0343" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_lcts_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_lcts_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ILEt3pp" metaid="R_ILEt3pp"
-      name="L-isoleucine transport out via proton antiport (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ILEt3pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ILEt3pp" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4141" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ile__L_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ile__L_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_METt3pp" metaid="R_METt3pp"
-      name="L-methionine tranport out via proton antiport (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_METt3pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/METt3pp" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1798" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4141" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_met__L_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_met__L_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GSNt3pp" metaid="R_GSNt3pp" name="Guanosine transport out via proton antiport (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GSNt3pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GSNt3pp" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3662" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gsn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gsn_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CLtipp" metaid="R_CLtipp" name="Chloride ion transport in via diffusion (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CLtipp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CLtipp" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1592" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cl_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cl_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_5DKGR" metaid="R_5DKGR" name="5-keto-D-gluconate 5-reductase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_5DKGR">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/5DKGR" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2842" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4266" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glcn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nad_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_5dglcn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadh_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PItpp" metaid="R_PItpp" name="Phosphate export via facillated diffusion (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PItpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PItpp" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4020" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pi_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LEUt3pp" metaid="R_LEUt3pp" name="L-leucine transport out via proton antiport (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LEUt3pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LEUt3pp" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1798" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4141" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_leu__L_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_leu__L_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_INSt3pp" metaid="R_INSt3pp" name="Inosine transport out via proton antiport (perisplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_INSt3pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/INSt3pp" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3662" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ins_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ins_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_INDOLEt2rpp" metaid="R_INDOLEt2rpp"
-      name="Indole transport via proton symport, reversible (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_INDOLEt2rpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/INDOLEt2rpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-142" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100835" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29227" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29228" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29229" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/29230" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3161" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_indole_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_indole_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ILEt2rpp" metaid="R_ILEt2rpp"
-      name="L-isoleucine reversible transport via proton symport (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ILEt2rpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ILEt2rpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100822" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0401" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ile__L_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ile__L_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_GLYtpp" metaid="R_GLYtpp" name="Glycine transport via facillitated diffusion"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GLYtpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GLYtpp" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3927" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gly_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gly_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PYK6" metaid="R_PYK6" name="RE2954" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PYK6">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PYK6" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1854" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dtdp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pep_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dttp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pyr_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FADt" metaid="R_FADt" name="FAD transporter, periplasm" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FADt">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FADt" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1985" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fad_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fad_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_FADtex" metaid="R_FADtex" name="FAD transport, outer membrane" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FADtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FADtex" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fad_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fad_e" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_AI2abcpp" metaid="R_AI2abcpp" name="Autoinducer-2 ABC transporter" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_AI2abcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/AI2abcpp" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b1515" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1516" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1513" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1514" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mththf_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_mththf_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PAI2I" metaid="R_PAI2I" name="Phospho-AI-2 isomerase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PAI2I">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PAI2I" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1518" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dhptdp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dhptdd_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_4HBZt3pp" metaid="R_4HBZt3pp" name="4-hydroxybenzoate transport out via antiporter"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_4HBZt3pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/4HBZt3pp" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b3240" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3241" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_4hbz_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_4hbz_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CURR" metaid="R_CURR" name="NADPH-dependent curcumin reductase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CURR">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CURR" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1449" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cur_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dhcur_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_LKDRA" metaid="R_LKDRA" name="2-keto-3-deoxy-L-rhamnonate aldolase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LKDRA">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LKDRA" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2245" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_lkdr_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_lald__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pyr_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_METNA" metaid="R_METNA" name="L-amino acid N-acyltransferase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_METNA">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/METNA" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1448" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_accoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_met__L_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_acmet_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_coa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_XYHDL" metaid="R_XYHDL" name="?-D-xyloside xylohydrolase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_XYHDL">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/XYHDL" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3656" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_iprimv_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glc__D_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_xyl__D_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_2DGLCtex" metaid="R_2DGLCtex"
-      name="2-Deoxy-D-glucose transport via diffusion (extracellular)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_2DGLCtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/2DGLCtex" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2dglc_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2dglc_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_E4PP" metaid="R_E4PP" name="Erythrose-4-phosphate phosphatase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_E4PP">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/E4PP" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b3826" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2293" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0822" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2690" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1727" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_e4p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_erthrs_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_PUACGAMS" metaid="R_PUACGAMS" name="Poly-?-1,6-N-acetyl-D-glucosamine synthase"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PUACGAMS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PUACGAMS" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b1021" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1022" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_puacgam_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_udp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_uacgam_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_RU5PP" metaid="R_RU5PP" name="Ribulose-5-Phosphate Phosphatase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_RU5PP">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/RU5PP" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2293" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ru5p__D_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_rbl__D_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_6D6SFK" metaid="R_6D6SFK" name="6-deoxy-6-sulfofructose kinase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_6D6SFK">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/6D6SFK" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3883" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_sf_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_sfp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_3SLAR" metaid="R_3SLAR" name="3-sulfolactaldehyde reductase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_3SLAR">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/3SLAR" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3882" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadh_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_sla_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dhps_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nad_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_SQtex" metaid="R_SQtex" name="Sulphoquinovose transport via diffusion" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_SQtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/SQtex" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3875" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_sq_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_sq_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_dhps_e" metaid="R_EX_dhps_e" name="2,3-Dihydroxypropane-1-sulfonate exchange"
-      reversible="false" sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_dhps_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/dhps" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dhps_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MOX" metaid="R_MOX" name="Malate oxidase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MOX">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MOX" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.5.4" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00360" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR101715" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10512" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10513" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10514" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/10515" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mal__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_o2_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o2_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_oaa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_URATEtex" metaid="R_URATEtex" name="Uric acid transport" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_URATEtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/URATEtex" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_urate_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_urate_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_cs1_e" metaid="R_EX_cs1_e" name="Cesium ion exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_cs1_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/cs1" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cs1_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CBL1tonex" metaid="R_CBL1tonex" name="Cob(1)alamin transport via ton system (extermal)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CBL1tonex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CBL1tonex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96472" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b3006" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1252" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3005" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3966" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cbl1_e" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cbl1_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CBItonex" metaid="R_CBItonex" name="Cobinamide transport via ton system (extermal)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CBItonex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CBItonex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96468" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b3006" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1252" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3005" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3966" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cbi_e" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cbi_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ARHGDx" metaid="R_ARHGDx" name="(R)-alpha-hydroxyglutarate dehydrogenase"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ARHGDx">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ARHGDx" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2913" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nad_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_r2hglut_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_akg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadh_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CPL" metaid="R_CPL" name="Carbon-phosphorous lyase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CPL">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CPL" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4098" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_prpmn_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ch4_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_prcp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_mepn_e" metaid="R_EX_mepn_e" name="Methylphosphonic acid exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_mepn_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/mepn" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mepn_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CH4t2pp" metaid="R_CH4t2pp" name="Methane Transport(periplasm)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CH4t2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CH4t2pp" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ch4_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ch4_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_INOSTO" metaid="R_INOSTO" name="Myo-Inositol:oxygen oxidoreductase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_INOSTO">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/INOSTO" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:MYO-INOSITOL-OXYGENASE-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.13.99.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01184" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR100839" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23696" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23697" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23698" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/23699" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3488" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_inost_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_o2_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glcur_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_HPYRP" metaid="R_HPYRP" name="3-phosphohydroxypyruvate phosphatase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_HPYRP">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/HPYRP" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1813" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3php_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_hpyr_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PSURIK" metaid="R_PSURIK" name="Pseudouridine kinase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PSURIK">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PSURIK" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2166" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_psuri_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_psd5p_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_Ftex" metaid="R_Ftex" name="Fluoride transport via diffusion" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_Ftex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/Ftex" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_f_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_f_e" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_CYSItex" metaid="R_CYSItex"
-      name="L cystine transport via diffusion extracellular to periplasm " reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CYSItex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CYSItex" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN0-507" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR97004" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cysi__L_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cysi__L_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_SERtpp" metaid="R_SERtpp" name="L-serine export via facilitated transport"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_SERtpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/SERtpp" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1533" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ser__L_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ser__L_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_QUINDHyi" metaid="R_QUINDHyi" name="Quinate dehydrogenase (NADP)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_QUINDHyi">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/QUINDHyi" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1692" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_quin_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3dhq_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadph_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DHGLYH" metaid="R_DHGLYH" name="Dehydroglycine Hydratase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DHGLYH">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DHGLYH" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_s0001" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dhgly_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glx_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nh4_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PNSPA" metaid="R_PNSPA" name="Purine Nucleoside Phorphoramidase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PNSPA">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PNSPA" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1103" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gmplys_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gmp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nalme_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_4HTHRK" metaid="R_4HTHRK" name="4-Hydroxy-L-threonine kinase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_4HTHRK">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/4HTHRK" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:RXN0-6564" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.7.1.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95023" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28787" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28788" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28789" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28790" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0003" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_4hthr_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_phthr_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_sq_e" metaid="R_EX_sq_e" name="Sulphoquinovose exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_sq_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/sq" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_sq_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_URATEtpp" metaid="R_URATEtpp" name="Uric acid transporter" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_URATEtpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/URATEtpp" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2888" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_urate_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_urate_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_CS1tex" metaid="R_CS1tex" name="Cesium transport via diffusion" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CS1tex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CS1tex" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cs1_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cs1_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ADOCBLtonex" metaid="R_ADOCBLtonex"
-      name="Adenosylcobalimin transport via ton system (extermal)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ADOCBLtonex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ADOCBLtonex" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95472" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b3006" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1252" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3005" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3966" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_adocbl_e" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adocbl_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PETNT181pp" metaid="R_PETNT181pp" name="Phosphoethanolamine transferase (c-C16:1)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PETNT181pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PETNT181pp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR102500" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3546" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_lipa_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pe181_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_12dgr181_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_enlipa_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ARMEPNS" metaid="R_ARMEPNS" name="?-D-ribose 1-methylphosphonate 5-triphosphate synthase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ARMEPNS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ARMEPNS" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b4099" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4096" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4100" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4101" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mepn_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ade_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_rpntp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_RPNTPH" metaid="R_RPNTPH" name="RPnTP hydrolase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_RPNTPH">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/RPNTPH" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4095" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_rpntp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_prpmn_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PRCPD" metaid="R_PRCPD" name="5-phospho-?-D-ribosyl 1,2-cyclic phosphate phosphodiesterase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PRCPD">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PRCPD" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4092" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_prcp_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_r15bp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_MEPNtex" metaid="R_MEPNtex"
-      name="Methylphosphonic acid transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MEPNtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MEPNtex" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mepn_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_mepn_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_UDPGPT" metaid="R_UDPGPT" name="Undecaprenyl-phosphate glucose phosphotransferase"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_UDPGPT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/UDPGPT" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2047" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_udcpp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_udpg_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_udcpgl_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ump_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MEPNabcpp" metaid="R_MEPNabcpp" name="Methylpshophonic acid abc transporter"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MEPNabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MEPNabcpp" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:and sboTerm="SBO:0000173">
-            <fbc:geneProductRef fbc:geneProduct="G_b4105" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4104" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4106" />
-          </fbc:and>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mepn_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_mepn_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_OMMBLHXy" metaid="R_OMMBLHXy"
-      name="2-Octaprenyl-3-methyl-6-methoxy-1,4-benzoquinol hydroxylase (NADPHl)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_OMMBLHXy">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/OMMBLHXy" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0662" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2ommbl_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_o2_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2omhmbl_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_OPHHXy" metaid="R_OPHHXy" name="2-Octaprenylphenol hydroxylase (NADPH)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_OPHHXy">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/OPHHXy" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2906" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2oph_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_o2_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2ohph_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PROD3" metaid="R_PROD3" name="Proline dehydrogenase (q8)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PROD3">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PROD3" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1014" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pro__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_q8_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_1pyr5c_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_q8h2_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_F1PP" metaid="R_F1PP" name="D-fructose 1-phosphate phosphatase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_F1PP">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/F1PP" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0822" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2690" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2293" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3697" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_f1p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fru_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ACP1p" metaid="R_ACP1p" name="Acid phosphatase (FMN)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ACP1p">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ACP1p" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0383" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fmn_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ribflv_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_4abzglu_e" metaid="R_EX_4abzglu_e" name="4-aminobenzoyl-glutamate exchange"
-      reversible="false" sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_4abzglu_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/4abzglu" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_4abzglu_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_3HPADHi" metaid="R_3HPADHi" name="3-Hydroxypropanal Dehydrogenase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_3HPADHi">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/3HPADHi" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1300" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3hppnl_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nad_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3hpp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadh_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_4ABZGLUtex" metaid="R_4ABZGLUtex"
-      name="P-aminobenzoyl glutamate transport via diffusion (extracellular to periplasm)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_4ABZGLUtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/4ABZGLUtex" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_4abzglu_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_4abzglu_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_2HPTCOAT" metaid="R_2HPTCOAT"
-      name="2-hydroxycyclohepta-1,4,6-triene-1-carboxyl-CoA thioesterase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_2HPTCOAT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/2HPTCOAT" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1400" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2hptcoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_2hptcl_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_coa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_metglcur_e" metaid="R_EX_metglcur_e" name="1-O-methyl-Beta-D-glucuronate exchange"
-      reversible="false" sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_metglcur_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/metglcur" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_metglcur_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MC6PH" metaid="R_MC6PH" name="Monoacetylchitobiose-6-phosphate hydrolase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MC6PH">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MC6PH" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1734" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mchtbs6p_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_acgam6p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gam_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_SLNTabcpp" metaid="R_SLNTabcpp" name="Selenite ABC transporter (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_SLNTabcpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/SLNTabcpp" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b2425" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2423" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2422" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2424" />
-            </fbc:and>
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b3917" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2423" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2422" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2424" />
-            </fbc:and>
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_slnt_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_slnt_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_VALt2rpp" metaid="R_VALt2rpp"
-      name="L-valine reversible transport via proton symport (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_VALt2rpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/VALt2rpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR105188" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0401" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_val__L_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_val__L_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_VALt3pp" metaid="R_VALt3pp" name="L-valine transport out via proton antiport (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_VALt3pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/VALt3pp" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:and sboTerm="SBO:0000173">
-              <fbc:geneProductRef fbc:geneProduct="G_b2683" />
-              <fbc:geneProductRef fbc:geneProduct="G_b2682" />
-            </fbc:and>
-            <fbc:geneProductRef fbc:geneProduct="G_b4141" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_val__L_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_val__L_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_MN2tipp" metaid="R_MN2tipp" name="Manganese transport in via permease (no H+)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_MN2tipp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/MN2tipp" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1821" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mn2_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_mn2_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PSURItpp" metaid="R_PSURItpp" name="Pseudouridine transport via permease"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PSURItpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PSURItpp" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2164" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_psuri_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_psuri_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CYSTA" metaid="R_CYSTA" name="Cysteine transaminase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CYSTA">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CYSTA" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:CYSTEINE-AMINOTRANSFERASE-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.6.1.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.6.1.3" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00895" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R00896" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR96990" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17441" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17442" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17443" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/17444" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0928" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_akg_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cys__L_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glu__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_mercppyr_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FE3DCITR5" metaid="R_FE3DCITR5" name="Ferric-dicitrate reductase via nadph"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FE3DCITR5">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FE3DCITR5" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3070" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fe3dcit_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cit_c" stoichiometry="4" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fe2_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_4HTHRA" metaid="R_4HTHRA" name="4-hydroxy-L-threonine aldolase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_4HTHRA">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/4HTHRA" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0870" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_4hthr_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gcald_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_gly_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_GAPP" metaid="R_GAPP" name="Glyceraldehyde-3-phosphate phosphatase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_GAPP">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/GAPP" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1727" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_g3p_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glyald_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_METGLCURt2pp" metaid="R_METGLCURt2pp"
-      name="1-O-methyl-Beta-D-glucuronate transport via proton symport (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_METGLCURt2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/METGLCURt2pp" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1616" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_metglcur_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_metglcur_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_METGLCURtex" metaid="R_METGLCURtex"
-      name="1-O-methyl-Beta-D-glucuronate via diffusion (extracellular)" reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_METGLCURtex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/METGLCURtex" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_metglcur_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_metglcur_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_FMNt" metaid="R_FMNt" name="FMN transporter, periplasm" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FMNt">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FMNt" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1985" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fmn_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fmn_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_AI2tex" metaid="R_AI2tex" name="Ai2 transport, outer membrane" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_AI2tex">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/AI2tex" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b0241" />
-            <fbc:geneProductRef fbc:geneProduct="G_b2215" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0929" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1377" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mththf_e" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_mththf_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_PAI2T" metaid="R_PAI2T" name="3-hydroxy-2,4-pentadione 5-phosphate thiolase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_PAI2T">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/PAI2T" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1517" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_coa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dhptdd_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_accoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_dhap_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CUt2pp" metaid="R_CUt2pp" name="Copper transport out via permease (no H+)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CUt2pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CUt2pp" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2924" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0577" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0465" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3291" />
-            <fbc:geneProductRef fbc:geneProduct="G_b1330" />
-            <fbc:geneProductRef fbc:geneProduct="G_b4159" />
-            <fbc:geneProductRef fbc:geneProduct="G_b0808" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cu_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cu_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_DHCURR" metaid="R_DHCURR" name="NADPH-dependent dihydrocurcumin reductase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_DHCURR">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/DHCURR" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1449" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dhcur_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_thcur_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_RHMND" metaid="R_RHMND" name="L-rhamnonate dehydratase" reversible="true"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_RHMND">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/RHMND" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b2247" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_rhmn_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_lkdr_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_3HBZCT" metaid="R_3HBZCT" name="3-hydroxybenzoyl-CoA thioesterase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_3HBZCT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/3HBZCT" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0597" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_3hbzcoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3hbz_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_coa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_CXSAMS" metaid="R_CXSAMS" name="Carboxy-S-adenosyl-L-methionine synthase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_CXSAMS">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/CXSAMS" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1870" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_amet_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pphn_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_cxsam_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_phpyr_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_EX_2dglc_e" metaid="R_EX_2dglc_e" name="2-Deoxy-D-glucose exchange" reversible="false"
-      sboTerm="SBO:0000627">
-        <annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_EX_2dglc_e">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/2dglc" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2dglc_e" stoichiometry="1" />
-        </listOfReactants>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_THRt2rpp" metaid="R_THRt2rpp"
-      name="L-threonine reversible transport via proton symport (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_THRt2rpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/THRt2rpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-72" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104850" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28883" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28884" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28885" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28886" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3116" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_thr__L_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_thr__L_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_SERt2rpp" metaid="R_SERt2rpp"
-      name="L-serine reversible transport via proton symport (periplasm)" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_SERt2rpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/SERt2rpp" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:TRANS-RXN-71" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR104352" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28887" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28888" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28889" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/28890" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:or sboTerm="SBO:0000174">
-            <fbc:geneProductRef fbc:geneProduct="G_b2796" />
-            <fbc:geneProductRef fbc:geneProduct="G_b3116" />
-          </fbc:or>
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_p" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ser__L_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ser__L_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_ACOAD1f" metaid="R_ACOAD1f" name="Acyl-CoA dehydrogenase (butanoyl-CoA)" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ACOAD1f">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ACOAD1f" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.3.3.6" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.3.8.1" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.3.8.7" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.3.99.-" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.3.99.3" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01175" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR95302" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24004" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24005" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24006" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/24007" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30731" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30732" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30733" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/30734" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0221" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_btcoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fad_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_b2coa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fadh2_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_AMPNTAT" metaid="R_AMPNTAT" name="Aminoalkylphosphonate N-acetyltransferase"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_AMPNTAT">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/AMPNTAT" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b4093" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_accoa_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ampnt_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_acampnt_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_coa_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_SQGH" metaid="R_SQGH" name="Sulfoquinovosidase" reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_SQGH">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/SQGH" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b3878" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_sqg_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_glyc_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_sq_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_URAtpp" metaid="R_URAtpp" name="Uracil export via facillitated diffusion (periplasm)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_URAtpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/URAtpp" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ura_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ura_p" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_ASPtpp" metaid="R_ASPtpp" name="L-aspartate uptake via facillitated diffusion"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_ASPtpp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/ASPtpp" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1206" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_asp__L_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_asp__L_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_FUMt1pp" metaid="R_FUMt1pp" name="Fumarate transport via diffusion in (periplasm)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_FUMt1pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/FUMt1pp" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1206" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fum_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_fum_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_default_lb" fbc:upperFluxBound="cobra_default_ub" id="R_SUCCt1pp" metaid="R_SUCCt1pp" name="Succinate transport via diffusion in (periplasm)"
-      reversible="true" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_SUCCt1pp">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/SUCCt1pp" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1206" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_succ_p" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_succ_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_QUINDH" metaid="R_QUINDH" name="Quinate dehydrogenase" reversible="false"
-      sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_QUINDH">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/QUINDH" />
-                  <rdf:li rdf:resource="http://identifiers.org/biocyc/META:QUINATE-5-DEHYDROGENASE-RXN" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.24" />
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.1.1.282" />
-                  <rdf:li rdf:resource="http://identifiers.org/kegg.reaction/R01872" />
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.reaction/MNXR103398" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22364" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22365" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22366" />
-                  <rdf:li rdf:resource="http://identifiers.org/rhea/22367" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b1692" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nad_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_quin_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_3dhq_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="2" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadh_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_LCARSyi" metaid="R_LCARSyi" name="Lacaldehyde reductase (S-propane-1,2-diol forming)"
-      reversible="false" sboTerm="SBO:0000375">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_LCARSyi">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/LCARSyi" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <fbc:geneProductAssociation xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2">
-          <fbc:geneProductRef fbc:geneProduct="G_b0325" />
-        </fbc:geneProductAssociation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_lald__L_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="1" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_12ppd__S_c" stoichiometry="1" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_nadp_c" stoichiometry="1" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="biomass" metaid="R_BIOMASS_Ec_iML1515_core_75p37M"
-      name="E. coli biomass objective function (iML1515) - core - with 75.37 GAM estimate" reversible="false" sboTerm="SBO:0000629">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_BIOMASS_Ec_iML1515_core_75p37M">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/Ec_iML1515_core_75p37M" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_10fthf_c" stoichiometry="0.000223" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2fe2s_c" stoichiometry="2.6E-5" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2ohph_c" stoichiometry="0.000223" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_4fe4s_c" stoichiometry="0.00026" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ala__L_c" stoichiometry="0.513689" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_amet_c" stoichiometry="0.000223" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_arg__L_c" stoichiometry="0.295792" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_asn__L_c" stoichiometry="0.241055" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_asp__L_c" stoichiometry="0.241055" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="75.55223" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_btn_c" stoichiometry="2E-6" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ca2_c" stoichiometry="0.005205" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cl_c" stoichiometry="0.005205" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_coa_c" stoichiometry="0.000576" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cobalt2_c" stoichiometry="2.5E-5" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ctp_c" stoichiometry="0.133508" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cu2_c" stoichiometry="0.000709" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cys__L_c" stoichiometry="0.09158" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_datp_c" stoichiometry="0.026166" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dctp_c" stoichiometry="0.027017" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dgtp_c" stoichiometry="0.027017" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dttp_c" stoichiometry="0.026166" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fad_c" stoichiometry="0.000223" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fe2_c" stoichiometry="0.006715" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fe3_c" stoichiometry="0.007808" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gln__L_c" stoichiometry="0.26316" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glu__L_c" stoichiometry="0.26316" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gly_c" stoichiometry="0.612638" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gtp_c" stoichiometry="0.215096" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="70.028756" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_his__L_c" stoichiometry="0.094738" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ile__L_c" stoichiometry="0.290529" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_k_c" stoichiometry="0.195193" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_kdo2lipid4_e" stoichiometry="0.019456" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_leu__L_c" stoichiometry="0.450531" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_lys__L_c" stoichiometry="0.343161" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_met__L_c" stoichiometry="0.153686" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mg2_c" stoichiometry="0.008675" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mlthf_c" stoichiometry="0.000223" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mn2_c" stoichiometry="0.000691" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mobd_c" stoichiometry="7E-6" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_murein5px4p_p" stoichiometry="0.013894" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nad_c" stoichiometry="0.001831" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadp_c" stoichiometry="0.000447" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nh4_c" stoichiometry="0.013013" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ni2_c" stoichiometry="0.000323" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pe160_p" stoichiometry="0.063814" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pe161_p" stoichiometry="0.075214" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_phe__L_c" stoichiometry="0.185265" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pheme_c" stoichiometry="0.000223" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pro__L_c" stoichiometry="0.221055" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pydx5p_c" stoichiometry="0.000223" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ribflv_c" stoichiometry="0.000223" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ser__L_c" stoichiometry="0.215792" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_sheme_c" stoichiometry="0.000223" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_so4_c" stoichiometry="0.004338" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_succoa_c" stoichiometry="9.8E-5" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_thf_c" stoichiometry="0.000223" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_thmpp_c" stoichiometry="0.000223" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_thr__L_c" stoichiometry="0.253687" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_trp__L_c" stoichiometry="0.056843" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_tyr__L_c" stoichiometry="0.137896" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_udcpdp_c" stoichiometry="5.5E-5" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_utp_c" stoichiometry="0.144104" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_val__L_c" stoichiometry="0.423162" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_zn2_c" stoichiometry="0.000341" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="75.37723" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="75.37723" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="75.37323" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="0.773903" />
-        </listOfProducts>
-      </reaction>
-      <reaction fast="false" fbc:lowerFluxBound="cobra_0_bound" fbc:upperFluxBound="cobra_default_ub" id="R_BIOMASS_Ec_iML1515_WT_75p37M" metaid="R_BIOMASS_Ec_iML1515_WT_75p37M"
-      name="E. coli biomass objective function (iML1515) - WT - with 75.37 GAM estimate" reversible="false" sboTerm="SBO:0000629">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#R_BIOMASS_Ec_iML1515_WT_75p37M">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.reaction/Ec_iML1515_WT_75p37M" />
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_10fthf_c" stoichiometry="0.000223" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2dmmql8_c" stoichiometry="0.000223" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_2fe2s_c" stoichiometry="2.5E-5" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_4fe4s_c" stoichiometry="0.000248" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_5mthf_c" stoichiometry="0.000223" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_accoa_c" stoichiometry="0.000279" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_adocbl_c" stoichiometry="0.000223" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ala__L_c" stoichiometry="0.499149" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_amet_c" stoichiometry="0.000223" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_arg__L_c" stoichiometry="0.28742" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_asn__L_c" stoichiometry="0.234232" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_asp__L_c" stoichiometry="0.234232" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_atp_c" stoichiometry="75.55223" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_btn_c" stoichiometry="2E-6" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ca2_c" stoichiometry="0.004952" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_chor_c" stoichiometry="0.000223" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cl_c" stoichiometry="0.004952" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_clpn160_p" stoichiometry="0.002944" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_clpn161_p" stoichiometry="0.00229" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_clpn181_p" stoichiometry="0.00118" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_coa_c" stoichiometry="0.000168" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cobalt2_c" stoichiometry="2.4E-5" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_colipa_e" stoichiometry="0.008151" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ctp_c" stoichiometry="0.129799" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cu2_c" stoichiometry="0.000674" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_cys__L_c" stoichiometry="0.088988" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_datp_c" stoichiometry="0.024805" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dctp_c" stoichiometry="0.025612" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dgtp_c" stoichiometry="0.025612" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_dttp_c" stoichiometry="0.024805" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_enter_c" stoichiometry="0.000223" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fad_c" stoichiometry="0.000223" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fe2_c" stoichiometry="0.006388" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_fe3_c" stoichiometry="0.007428" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gln__L_c" stoichiometry="0.255712" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glu__L_c" stoichiometry="0.255712" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gly_c" stoichiometry="0.595297" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_glycogen_c" stoichiometry="0.154187" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gthrd_c" stoichiometry="0.000223" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_gtp_c" stoichiometry="0.209121" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_h2o_c" stoichiometry="70.028756" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_hemeO_c" stoichiometry="0.000223" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_his__L_c" stoichiometry="0.092056" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ile__L_c" stoichiometry="0.282306" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_k_c" stoichiometry="0.18569" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_leu__L_c" stoichiometry="0.437778" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_lipopb_c" stoichiometry="3E-6" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_lys__L_c" stoichiometry="0.333448" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_malcoa_c" stoichiometry="3.1E-5" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_met__L_c" stoichiometry="0.149336" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mg2_c" stoichiometry="0.008253" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mlthf_c" stoichiometry="0.000223" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mn2_c" stoichiometry="0.000658" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mobd_c" stoichiometry="7E-6" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mococdp_c" stoichiometry="7E-6" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mocogdp_c" stoichiometry="7E-6" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_mql8_c" stoichiometry="0.000223" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_murein3p3p_p" stoichiometry="0.001345" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_murein3px4p_p" stoichiometry="0.000605" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_murein4p4p_p" stoichiometry="0.005381" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_murein4px4p_p" stoichiometry="0.005448" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_murein4px4px4p_p" stoichiometry="0.000673" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nad_c" stoichiometry="0.001787" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadh_c" stoichiometry="4.5E-5" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadp_c" stoichiometry="0.000112" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nadph_c" stoichiometry="0.000335" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_nh4_c" stoichiometry="0.012379" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ni2_c" stoichiometry="0.000307" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pe160_p" stoichiometry="0.044164" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pe161_p" stoichiometry="0.03435" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pe181_p" stoichiometry="0.017704" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pg160_p" stoichiometry="0.010599" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pg161_p" stoichiometry="0.008244" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pg181_p" stoichiometry="0.004249" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_phe__L_c" stoichiometry="0.180021" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pheme_c" stoichiometry="0.000223" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pro__L_c" stoichiometry="0.214798" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ptrc_c" stoichiometry="0.03327" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_pydx5p_c" stoichiometry="0.000223" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_q8h2_c" stoichiometry="0.000223" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ribflv_c" stoichiometry="0.000223" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_ser__L_c" stoichiometry="0.209684" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_sheme_c" stoichiometry="0.000223" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_so4_c" stoichiometry="0.004126" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_spmd_c" stoichiometry="0.006744" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_succoa_c" stoichiometry="9.8E-5" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_thf_c" stoichiometry="0.000223" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_thmpp_c" stoichiometry="0.000223" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_thr__L_c" stoichiometry="0.246506" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_trp__L_c" stoichiometry="0.055234" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_tyr__L_c" stoichiometry="0.133993" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_udcpdp_c" stoichiometry="5.5E-5" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_utp_c" stoichiometry="0.140101" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_val__L_c" stoichiometry="0.411184" />
-          <speciesReference constant="true" sboTerm="SBO:0000010" species="M_zn2_c" stoichiometry="0.000324" />
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_adp_c" stoichiometry="75.37723" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_h_c" stoichiometry="75.37723" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_pi_c" stoichiometry="75.37323" />
-          <speciesReference constant="true" sboTerm="SBO:0000011" species="M_ppi_c" stoichiometry="0.749831" />
-        </listOfProducts>
-      </reaction>
-    </listOfReactions>
-  </model>
-</sbml>
Binary file test-data/iCN718.xml.gz has changed
--- a/test-data/rp_001_0001_with_fba.xml	Tue Nov 23 16:34:29 2021 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,408 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<sbml xmlns="http://www.sbml.org/sbml/level3/version1/core" xmlns:groups="http://www.sbml.org/sbml/level3/version1/groups/version1" xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2" level="3" version="1" groups:required="false" fbc:required="false">
-  <model metaid="a03e1bf0f20b54a66f7b4ce262ea6b0f7579c0a1e47144a649b9e2e711f6b3ed" id="RP_model_001_0001" name="001_0001" substanceUnits="mole" timeUnits="second" extentUnits="mole" fbc:strict="true">
-    <listOfCompartments>
-      <compartment metaid="_2e7d2c03a9507ae265ecf5b5356885a53393a2029d241394997265a1a25aefc6" sboTerm="SBO:0000290" id="c" name="cytosol" size="1" constant="true">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#_2e7d2c03a9507ae265ecf5b5356885a53393a2029d241394997265a1a25aefc6">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.compartment/c"/>
-                  <rdf:li rdf:resource="http://identifiers.org/bigg.compartment/c_c"/>
-                  <rdf:li rdf:resource="http://identifiers.org/metanetx.compartment/MNXC3"/>
-                  <rdf:li rdf:resource="http://identifiers.org/seed/c"/>
-                  <rdf:li rdf:resource="http://identifiers.org/seed/c0"/>
-                  <rdf:li rdf:resource="http://identifiers.org/seed/cytosol"/>
-                  <rdf:li rdf:resource="http://identifiers.org/name/cytosol"/>
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-          </rdf:RDF>
-        </annotation>
-      </compartment>
-    </listOfCompartments>
-    <listOfSpecies>
-      <species metaid="_47d72a86d31940edf1cc42c7a7361a7a96211dc2a6679326b8ad27a7e216ada0" id="MNXM83" name="MNXM83" compartment="c" initialConcentration="1" hasOnlySubstanceUnits="false" boundaryCondition="false" constant="false">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#_47d72a86d31940edf1cc42c7a7361a7a96211dc2a6679326b8ad27a7e216ada0">
-              <bqbiol:is>
-                <rdf:Bag/>
-              </bqbiol:is>
-            </rdf:Description>
-            <rdf:BRSynth rdf:about="#_47d72a86d31940edf1cc42c7a7361a7a96211dc2a6679326b8ad27a7e216ada0">
-              <brsynth:brsynth xmlns:brsynth="http://brsynth.eu">
-                <brsynth:smiles value="[H]OP(=O)(O[H])OP(=O)(O[H])OC([H])([H])C([H])([H])C(=C([H])[H])C([H])([H])[H]"/>
-                <brsynth:inchi value="InChI=1S/C5H12O7P2/c1-5(2)3-4-11-14(9,10)12-13(6,7)8/h1,3-4H2,2H3,(H,9,10)(H2,6,7,8)"/>
-                <brsynth:inchikey value="NUHSROFQTUXZQQ-UHFFFAOYSA-N"/>
-              </brsynth:brsynth>
-            </rdf:BRSynth>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species metaid="b0098569a07f786a6e9b2294639668cd4ee564dd642a38bdf429c4c6bb560b46" id="CMPD_0000000001" name="CMPD_0000000001" compartment="c" initialConcentration="1" hasOnlySubstanceUnits="false" boundaryCondition="false" constant="false">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#b0098569a07f786a6e9b2294639668cd4ee564dd642a38bdf429c4c6bb560b46">
-              <bqbiol:is>
-                <rdf:Bag/>
-              </bqbiol:is>
-            </rdf:Description>
-            <rdf:BRSynth rdf:about="#b0098569a07f786a6e9b2294639668cd4ee564dd642a38bdf429c4c6bb560b46">
-              <brsynth:brsynth xmlns:brsynth="http://brsynth.eu">
-                <brsynth:smiles value="[H]C(=C([H])C([H])=C(C([H])([H])[H])C([H])([H])C([H])([H])C([H])=C(C([H])([H])[H])C([H])([H])C([H])([H])C([H])=C(C([H])([H])[H])C([H])([H])C([H])([H])C([H])=C(C([H])([H])[H])C([H])([H])[H])C([H])=C(C([H])([H])[H])C([H])([H])C([H])([H])C([H])=C(C([H])([H])[H])C([H])([H])C([H])([H])C([H])=C(C([H])([H])[H])C([H])([H])C([H])([H])C([H])=C(C([H])([H])[H])C([H])([H])[H]"/>
-                <brsynth:inchi value="InChI=1S/C40H64/c1-33(2)19-13-23-37(7)27-17-31-39(9)29-15-25-35(5)21-11-12-22-36(6)26-16-30-40(10)32-18-28-38(8)24-14-20-34(3)4/h11-12,19-22,27-30H,13-18,23-26,31-32H2,1-10H3"/>
-                <brsynth:inchikey value="YVLPJIGOMTXXLP-UHFFFAOYSA-N"/>
-              </brsynth:brsynth>
-            </rdf:BRSynth>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species metaid="_61841f05183ff06dbe77a0e01f6d73d7a890997d823ac18d9fd56bac3d4bcc39" id="MNXM24" name="MNXM24" compartment="c" initialConcentration="1" hasOnlySubstanceUnits="false" boundaryCondition="false" constant="false">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#_61841f05183ff06dbe77a0e01f6d73d7a890997d823ac18d9fd56bac3d4bcc39">
-              <bqbiol:is>
-                <rdf:Bag/>
-              </bqbiol:is>
-            </rdf:Description>
-            <rdf:BRSynth rdf:about="#_61841f05183ff06dbe77a0e01f6d73d7a890997d823ac18d9fd56bac3d4bcc39">
-              <brsynth:brsynth xmlns:brsynth="http://brsynth.eu">
-                <brsynth:smiles/>
-                <brsynth:inchi/>
-                <brsynth:inchikey/>
-              </brsynth:brsynth>
-            </rdf:BRSynth>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species metaid="a6e267be12defb7184259624f5adc519108c6c6adfe6be13f64b649567cb6df1" id="MNXM11" name="MNXM11" compartment="c" initialConcentration="1" hasOnlySubstanceUnits="false" boundaryCondition="false" constant="false">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#a6e267be12defb7184259624f5adc519108c6c6adfe6be13f64b649567cb6df1">
-              <bqbiol:is>
-                <rdf:Bag/>
-              </bqbiol:is>
-            </rdf:Description>
-            <rdf:BRSynth rdf:about="#a6e267be12defb7184259624f5adc519108c6c6adfe6be13f64b649567cb6df1">
-              <brsynth:brsynth xmlns:brsynth="http://brsynth.eu">
-                <brsynth:smiles value="O=P(O)(O)OP(=O)(O)O"/>
-                <brsynth:inchi value="InChI=1S/H4O7P2/c1-8(2,3)7-9(4,5)6/h(H2,1,2,3)(H2,4,5,6)"/>
-                <brsynth:inchikey value="XPPKVPWEQAFLFU-UHFFFAOYSA-N"/>
-              </brsynth:brsynth>
-            </rdf:BRSynth>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species metaid="_6817bb5f7133f50744b232330f1f3009343f785b8f77602ce5f44cdd9458f002" id="TARGET_0000000001" name="TARGET_0000000001" compartment="c" initialConcentration="1" hasOnlySubstanceUnits="false" boundaryCondition="false" constant="false">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#_6817bb5f7133f50744b232330f1f3009343f785b8f77602ce5f44cdd9458f002">
-              <bqbiol:is>
-                <rdf:Bag/>
-              </bqbiol:is>
-            </rdf:Description>
-            <rdf:BRSynth rdf:about="#_6817bb5f7133f50744b232330f1f3009343f785b8f77602ce5f44cdd9458f002">
-              <brsynth:brsynth xmlns:brsynth="http://brsynth.eu">
-                <brsynth:smiles value="[H]C(=C([H])C([H])=C(C([H])=C([H])C([H])=C(C([H])=C([H])C([H])=C(C([H])([H])[H])C([H])([H])C([H])([H])C([H])=C(C([H])([H])[H])C([H])([H])[H])C([H])([H])[H])C([H])([H])[H])C([H])=C(C([H])=C([H])C([H])=C(C([H])=C([H])C([H])=C(C([H])([H])[H])C([H])([H])C([H])([H])C([H])=C(C([H])([H])[H])C([H])([H])[H])C([H])([H])[H])C([H])([H])[H]"/>
-                <brsynth:inchi value="InChI=1S/C40H56/c1-33(2)19-13-23-37(7)27-17-31-39(9)29-15-25-35(5)21-11-12-22-36(6)26-16-30-40(10)32-18-28-38(8)24-14-20-34(3)4/h11-12,15-22,25-32H,13-14,23-24H2,1-10H3"/>
-                <brsynth:inchikey value="OAIJSZIZWZSQBC-UHFFFAOYSA-N"/>
-              </brsynth:brsynth>
-            </rdf:BRSynth>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species metaid="_212c5940beac5625a2636d3d14fbc63cc5a8107d9dd39020ac544f296debabcc" id="MNXM132" name="MNXM132" compartment="c" initialConcentration="1" hasOnlySubstanceUnits="false" boundaryCondition="false" constant="false">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#_212c5940beac5625a2636d3d14fbc63cc5a8107d9dd39020ac544f296debabcc">
-              <bqbiol:is>
-                <rdf:Bag/>
-              </bqbiol:is>
-            </rdf:Description>
-            <rdf:BRSynth rdf:about="#_212c5940beac5625a2636d3d14fbc63cc5a8107d9dd39020ac544f296debabcc">
-              <brsynth:brsynth xmlns:brsynth="http://brsynth.eu">
-                <brsynth:smiles value="[H]OP(=O)(O[H])OP(=O)(O[H])OC([H])([H])C([H])=C(C([H])([H])[H])C([H])([H])[H]"/>
-                <brsynth:inchi value="InChI=1S/C5H12O7P2/c1-5(2)3-4-11-14(9,10)12-13(6,7)8/h3H,4H2,1-2H3,(H,9,10)(H2,6,7,8)"/>
-                <brsynth:inchikey value="CBIDRCWHNCKSTO-UHFFFAOYSA-N"/>
-              </brsynth:brsynth>
-            </rdf:BRSynth>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species metaid="_2f4b2d21d00b43a266620e821de533b08c3e42ff09ca008f915ca4400eb7d8c4" id="MNXM8975" name="MNXM8975" compartment="c" initialConcentration="1" hasOnlySubstanceUnits="false" boundaryCondition="false" constant="false">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#_2f4b2d21d00b43a266620e821de533b08c3e42ff09ca008f915ca4400eb7d8c4">
-              <bqbiol:is>
-                <rdf:Bag/>
-              </bqbiol:is>
-            </rdf:Description>
-            <rdf:BRSynth rdf:about="#_2f4b2d21d00b43a266620e821de533b08c3e42ff09ca008f915ca4400eb7d8c4">
-              <brsynth:brsynth xmlns:brsynth="http://brsynth.eu">
-                <brsynth:smiles/>
-                <brsynth:inchi/>
-                <brsynth:inchikey/>
-              </brsynth:brsynth>
-            </rdf:BRSynth>
-          </rdf:RDF>
-        </annotation>
-      </species>
-      <species metaid="_2c27bb432be6149f648dcec0e702fd9bdf6449fb9f730bd86eeb0b63b93d8858" id="CMPD_0000000003" name="CMPD_0000000003" compartment="c" initialConcentration="1" hasOnlySubstanceUnits="false" boundaryCondition="false" constant="false">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#_2c27bb432be6149f648dcec0e702fd9bdf6449fb9f730bd86eeb0b63b93d8858">
-              <bqbiol:is>
-                <rdf:Bag/>
-              </bqbiol:is>
-            </rdf:Description>
-            <rdf:BRSynth rdf:about="#_2c27bb432be6149f648dcec0e702fd9bdf6449fb9f730bd86eeb0b63b93d8858">
-              <brsynth:brsynth xmlns:brsynth="http://brsynth.eu">
-                <brsynth:smiles value="[H]OP(=O)(O[H])OP(=O)(O[H])OC([H])([H])C([H])=C(C([H])([H])[H])C([H])([H])C([H])([H])C([H])=C(C([H])([H])[H])C([H])([H])C([H])([H])C([H])=C(C([H])([H])[H])C([H])([H])C([H])([H])C([H])=C(C([H])([H])[H])C([H])([H])[H]"/>
-                <brsynth:inchi value="InChI=1S/C20H36O7P2/c1-17(2)9-6-10-18(3)11-7-12-19(4)13-8-14-20(5)15-16-26-29(24,25)27-28(21,22)23/h9,11,13,15H,6-8,10,12,14,16H2,1-5H3,(H,24,25)(H2,21,22,23)"/>
-                <brsynth:inchikey value="OINNEUNVOZHBOX-UHFFFAOYSA-N"/>
-              </brsynth:brsynth>
-            </rdf:BRSynth>
-          </rdf:RDF>
-        </annotation>
-      </species>
-    </listOfSpecies>
-    <listOfParameters>
-      <parameter metaid="dc937b59892604f5a86ac96936cd7ff09e25f18ae6b758e8014a24c7fa039e91" sboTerm="SBO:0000625" id="BRS_FBC_10000" value="10000" units="mmol_per_gDW_per_hr" constant="true"/>
-      <parameter metaid="dc937b59892604f5a86ac96936cd7ff09e25f18ae6b758e8014a24c7fa039e91" sboTerm="SBO:0000625" id="BRS_FBC_0" value="0" units="mmol_per_gDW_per_hr" constant="true"/>
-    </listOfParameters>
-    <listOfReactions>
-      <reaction metaid="_7af1776cbbaecbf874d7f576d21891f6ad79e3b7c2e726cfd2ee9f5bd6f483c4" sboTerm="SBO:0000176" id="rxn_1" reversible="false" fast="false" fbc:lowerFluxBound="BRS_FBC_0" fbc:upperFluxBound="BRS_FBC_10000">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#_7af1776cbbaecbf874d7f576d21891f6ad79e3b7c2e726cfd2ee9f5bd6f483c4">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.5.1.29"/>
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-            <rdf:BRSynth rdf:about="#_7af1776cbbaecbf874d7f576d21891f6ad79e3b7c2e726cfd2ee9f5bd6f483c4">
-              <brsynth:brsynth xmlns:brsynth="http://brsynth.eu">
-                <brsynth:smiles value="[H]OP(=O)(O[H])OP(=O)(O[H])OC([H])([H])C([H])=C(C([H])([H])[H])C([H])([H])[H].[H]OP(=O)(O[H])OP(=O)(O[H])OC([H])([H])C([H])([H])C(=C([H])[H])C([H])([H])[H]&gt;&gt;[H]OP(=O)(O[H])OP(=O)(O[H])OC([H])([H])C([H])=C(C([H])([H])[H])C([H])([H])C([H])([H])C([H])=C(C([H])([H])[H])C([H])([H])C([H])([H])C([H])=C(C([H])([H])[H])C([H])([H])C([H])([H])C([H])=C(C([H])([H])[H])C([H])([H])[H].O=P(O)(O)OP(=O)(O)O.O=P(O)(O)OP(=O)(O)O.O=P(O)(O)OP(=O)(O)O"/>
-                <brsynth:rp2_transfo_id value="TRS_0_2_363"/>
-                <brsynth:rule_ids>
-                  <brsynth:RR-02-90bcfd187709eb1b-16-F/>
-                </brsynth:rule_ids>
-                <brsynth:tmpl_rxn_ids>
-                  <brsynth:MNXR132232/>
-                </brsynth:tmpl_rxn_ids>
-                <brsynth:rule_score value="0.5869134225065102"/>
-                <brsynth:idx_in_path value="1"/>
-                <brsynth:fba_biomass>
-                  <brsynth:value value="0.0"/>
-                  <brsynth:units value="gDW / gDW / hour"/>
-                </brsynth:fba_biomass>
-                <brsynth:fba_fraction>
-                  <brsynth:value value="0.9388532834588735"/>
-                  <brsynth:units value="milimole / gDW / hour"/>
-                </brsynth:fba_fraction>
-              </brsynth:brsynth>
-            </rdf:BRSynth>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference species="MNXM132" stoichiometry="1" constant="true"/>
-          <speciesReference species="MNXM83" stoichiometry="1" constant="true"/>
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference species="CMPD_0000000003" stoichiometry="1" constant="true"/>
-          <speciesReference species="MNXM11" stoichiometry="3" constant="true"/>
-        </listOfProducts>
-      </reaction>
-      <reaction metaid="c9c2d56fd0ad9d5b8cd80acad4b5df22945ab4de50db7b24db52a91a7560c3ff" sboTerm="SBO:0000176" id="rxn_2" reversible="false" fast="false" fbc:lowerFluxBound="BRS_FBC_0" fbc:upperFluxBound="BRS_FBC_10000">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#c9c2d56fd0ad9d5b8cd80acad4b5df22945ab4de50db7b24db52a91a7560c3ff">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.5.1.96"/>
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.5.1.99"/>
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/2.5.1.32"/>
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-            <rdf:BRSynth rdf:about="#c9c2d56fd0ad9d5b8cd80acad4b5df22945ab4de50db7b24db52a91a7560c3ff">
-              <brsynth:brsynth xmlns:brsynth="http://brsynth.eu">
-                <brsynth:smiles value="[H]OP(=O)(O[H])OP(=O)(O[H])OC([H])([H])C([H])=C(C([H])([H])[H])C([H])([H])C([H])([H])C([H])=C(C([H])([H])[H])C([H])([H])C([H])([H])C([H])=C(C([H])([H])[H])C([H])([H])C([H])([H])C([H])=C(C([H])([H])[H])C([H])([H])[H]&gt;&gt;[H]C(=C([H])C([H])=C(C([H])([H])[H])C([H])([H])C([H])([H])C([H])=C(C([H])([H])[H])C([H])([H])C([H])([H])C([H])=C(C([H])([H])[H])C([H])([H])C([H])([H])C([H])=C(C([H])([H])[H])C([H])([H])[H])C([H])=C(C([H])([H])[H])C([H])([H])C([H])([H])C([H])=C(C([H])([H])[H])C([H])([H])C([H])([H])C([H])=C(C([H])([H])[H])C([H])([H])C([H])([H])C([H])=C(C([H])([H])[H])C([H])([H])[H].O=P(O)(O)OP(=O)(O)O.O=P(O)(O)OP(=O)(O)O"/>
-                <brsynth:rp2_transfo_id value="TRS_0_1_9"/>
-                <brsynth:rule_ids>
-                  <brsynth:RR-02-b25156a335e3e30f-16-F/>
-                </brsynth:rule_ids>
-                <brsynth:tmpl_rxn_ids>
-                  <brsynth:MNXR111250/>
-                  <brsynth:MNXR111499/>
-                  <brsynth:MNXR113543/>
-                  <brsynth:MNXR118024/>
-                  <brsynth:MNXR139549/>
-                </brsynth:tmpl_rxn_ids>
-                <brsynth:rule_score value="0.5683242688496836"/>
-                <brsynth:idx_in_path value="2"/>
-                <brsynth:fba_biomass>
-                  <brsynth:value value="0.0"/>
-                  <brsynth:units value="gDW / gDW / hour"/>
-                </brsynth:fba_biomass>
-                <brsynth:fba_fraction>
-                  <brsynth:value value="0.9388532834588735"/>
-                  <brsynth:units value="milimole / gDW / hour"/>
-                </brsynth:fba_fraction>
-              </brsynth:brsynth>
-            </rdf:BRSynth>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference species="CMPD_0000000003" stoichiometry="1" constant="true"/>
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference species="CMPD_0000000001" stoichiometry="1" constant="true"/>
-          <speciesReference species="MNXM11" stoichiometry="2" constant="true"/>
-        </listOfProducts>
-      </reaction>
-      <reaction metaid="_376841fa42ba139764a5509b9d817e2e540d0e228582c970025c73ae1ee77c0d" sboTerm="SBO:0000176" id="rxn_3" reversible="false" fast="false" fbc:lowerFluxBound="BRS_FBC_0" fbc:upperFluxBound="BRS_FBC_10000">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:Description rdf:about="#_376841fa42ba139764a5509b9d817e2e540d0e228582c970025c73ae1ee77c0d">
-              <bqbiol:is>
-                <rdf:Bag>
-                  <rdf:li rdf:resource="http://identifiers.org/ec-code/1.3.99.31"/>
-                </rdf:Bag>
-              </bqbiol:is>
-            </rdf:Description>
-            <rdf:BRSynth rdf:about="#_376841fa42ba139764a5509b9d817e2e540d0e228582c970025c73ae1ee77c0d">
-              <brsynth:brsynth xmlns:brsynth="http://brsynth.eu">
-                <brsynth:smiles value="[H]C(=C([H])C([H])=C(C([H])([H])[H])C([H])([H])C([H])([H])C([H])=C(C([H])([H])[H])C([H])([H])C([H])([H])C([H])=C(C([H])([H])[H])C([H])([H])C([H])([H])C([H])=C(C([H])([H])[H])C([H])([H])[H])C([H])=C(C([H])([H])[H])C([H])([H])C([H])([H])C([H])=C(C([H])([H])[H])C([H])([H])C([H])([H])C([H])=C(C([H])([H])[H])C([H])([H])C([H])([H])C([H])=C(C([H])([H])[H])C([H])([H])[H]&gt;&gt;[H]C(=C([H])C([H])=C(C([H])=C([H])C([H])=C(C([H])=C([H])C([H])=C(C([H])([H])[H])C([H])([H])C([H])([H])C([H])=C(C([H])([H])[H])C([H])([H])[H])C([H])([H])[H])C([H])([H])[H])C([H])=C(C([H])=C([H])C([H])=C(C([H])=C([H])C([H])=C(C([H])([H])[H])C([H])([H])C([H])([H])C([H])=C(C([H])([H])[H])C([H])([H])[H])C([H])([H])[H])C([H])([H])[H]"/>
-                <brsynth:rp2_transfo_id value="TRS_0_0_1"/>
-                <brsynth:rule_ids>
-                  <brsynth:RR-02-bdf7d8715e2e4d93-16-F/>
-                </brsynth:rule_ids>
-                <brsynth:tmpl_rxn_ids>
-                  <brsynth:MNXR113128/>
-                </brsynth:tmpl_rxn_ids>
-                <brsynth:rule_score value="0.7486085128675456"/>
-                <brsynth:idx_in_path value="3"/>
-                <brsynth:fba_biomass>
-                  <brsynth:value value="0.0"/>
-                  <brsynth:units value="gDW / gDW / hour"/>
-                </brsynth:fba_biomass>
-                <brsynth:fba_fraction>
-                  <brsynth:value value="0.9388532834588735"/>
-                  <brsynth:units value="milimole / gDW / hour"/>
-                </brsynth:fba_fraction>
-              </brsynth:brsynth>
-            </rdf:BRSynth>
-          </rdf:RDF>
-        </annotation>
-        <listOfReactants>
-          <speciesReference species="CMPD_0000000001" stoichiometry="1" constant="true"/>
-          <speciesReference species="MNXM8975" stoichiometry="4" constant="true"/>
-        </listOfReactants>
-        <listOfProducts>
-          <speciesReference species="MNXM24" stoichiometry="4" constant="true"/>
-          <speciesReference species="TARGET_0000000001" stoichiometry="1" constant="true"/>
-        </listOfProducts>
-      </reaction>
-    </listOfReactions>
-    <groups:listOfGroups>
-      <groups:group metaid="_93eef40c447d295fa61df9270c5fd909ec2ba7ee9883090552c0466873cd4299" groups:id="rp_pathway" groups:kind="collection">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:BRSynth rdf:about="#_93eef40c447d295fa61df9270c5fd909ec2ba7ee9883090552c0466873cd4299">
-              <brsynth:brsynth xmlns:brsynth="http://brsynth.eu">
-                <brsynth:fba_biomass>
-                  <brsynth:value value="0.8769972144269754"/>
-                  <brsynth:units value="gDW / gDW / hour"/>
-                </brsynth:fba_biomass>
-                <brsynth:fba_fraction>
-                  <brsynth:value value="0.9388532834588735"/>
-                  <brsynth:units value="milimole / gDW / hour"/>
-                </brsynth:fba_fraction>
-                <brsynth:global_score value="-1"/>
-              </brsynth:brsynth>
-            </rdf:BRSynth>
-          </rdf:RDF>
-        </annotation>
-        <groups:listOfMembers>
-          <groups:member groups:idRef="rxn_1"/>
-          <groups:member groups:idRef="rxn_2"/>
-          <groups:member groups:idRef="rxn_3"/>
-        </groups:listOfMembers>
-      </groups:group>
-      <groups:group metaid="_613b064337553014ede418c67180137a4561ff11b13f3bfa1a2765ef37ac375a" groups:id="rp_intermediate_species" groups:kind="collection">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:BRSynth rdf:about="#_613b064337553014ede418c67180137a4561ff11b13f3bfa1a2765ef37ac375a">
-              <brsynth:brsynth xmlns:brsynth="http://brsynth.eu"/>
-            </rdf:BRSynth>
-          </rdf:RDF>
-        </annotation>
-        <groups:listOfMembers>
-          <groups:member groups:idRef="CMPD_0000000003"/>
-          <groups:member groups:idRef="CMPD_0000000001"/>
-        </groups:listOfMembers>
-      </groups:group>
-      <groups:group metaid="_564fce39b23c6cf87d12dc2c612448384fd2cd980fe3fc07829e2ef802645579" groups:id="rp_trunk_species" groups:kind="collection">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:BRSynth rdf:about="#_564fce39b23c6cf87d12dc2c612448384fd2cd980fe3fc07829e2ef802645579">
-              <brsynth:brsynth xmlns:brsynth="http://brsynth.eu"/>
-            </rdf:BRSynth>
-          </rdf:RDF>
-        </annotation>
-        <groups:listOfMembers>
-          <groups:member groups:idRef="CMPD_0000000001"/>
-          <groups:member groups:idRef="MNXM83"/>
-          <groups:member groups:idRef="TARGET_0000000001"/>
-          <groups:member groups:idRef="MNXM132"/>
-          <groups:member groups:idRef="CMPD_0000000003"/>
-        </groups:listOfMembers>
-      </groups:group>
-      <groups:group metaid="_9e3154173c97366b3980dd1642e1e35d0bdfc3274abc744e89ecb518bcd48378" groups:id="rp_completed_species" groups:kind="collection">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:BRSynth rdf:about="#_9e3154173c97366b3980dd1642e1e35d0bdfc3274abc744e89ecb518bcd48378">
-              <brsynth:brsynth xmlns:brsynth="http://brsynth.eu"/>
-            </rdf:BRSynth>
-          </rdf:RDF>
-        </annotation>
-        <groups:listOfMembers>
-          <groups:member groups:idRef="MNXM11"/>
-          <groups:member groups:idRef="MNXM24"/>
-          <groups:member groups:idRef="MNXM8975"/>
-        </groups:listOfMembers>
-      </groups:group>
-      <groups:group metaid="_58b3b59284e0d918d6d3f3bcadc2d757726da7594cd899cad4e745836ac967a3" groups:id="rp_sink_species" groups:kind="collection">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:BRSynth rdf:about="#_58b3b59284e0d918d6d3f3bcadc2d757726da7594cd899cad4e745836ac967a3">
-              <brsynth:brsynth xmlns:brsynth="http://brsynth.eu"/>
-            </rdf:BRSynth>
-          </rdf:RDF>
-        </annotation>
-        <groups:listOfMembers>
-          <groups:member groups:idRef="MNXM11"/>
-          <groups:member groups:idRef="MNXM132"/>
-          <groups:member groups:idRef="MNXM83"/>
-        </groups:listOfMembers>
-      </groups:group>
-      <groups:group metaid="a0f48a6fe4f833a3d15abd7ee5b944b97d629570ac09588e9fb6fdf6196ab189" groups:id="rp_fba_ignored_species" groups:kind="collection">
-        <annotation>
-          <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
-            <rdf:BRSynth rdf:about="#a0f48a6fe4f833a3d15abd7ee5b944b97d629570ac09588e9fb6fdf6196ab189">
-              <brsynth:brsynth xmlns:brsynth="http://brsynth.eu"/>
-            </rdf:BRSynth>
-          </rdf:RDF>
-        </annotation>
-        <groups:listOfMembers>
-          <groups:member groups:idRef="MNXM24"/>
-          <groups:member groups:idRef="MNXM8975"/>
-        </groups:listOfMembers>
-      </groups:group>
-    </groups:listOfGroups>
-  </model>
-</sbml>